-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build targets for on-seL4 and not-on-seL4
This allows us to build versions of the website for running on seL4/LionsOS, and for running on a more standard webserver. `make build` builds in _site, `make on_seL4` builds into _site_on_seL4, and includes any material protected by an `if site.on_seL4` guard. Currently that's only in the template. Signed-off-by: Peter Chubb <[email protected]>
- Loading branch information
Showing
4 changed files
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
*.swp | ||
_site | ||
_preview | ||
_site_on_seL4 | ||
.sass-cache | ||
.jekyll-cache | ||
.jekyll-metadata | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Copyright 2024 seL4 Project a Series of LF Projects, LLC. | ||
# SPDX-License-Identifier: BSD-2-Clause | ||
## | ||
|
||
url: "https://beta.sel4.systems" | ||
static_url: "https://beta.sel4.systems" | ||
on_seL4: true | ||
destination: _site_on_seL4 |