Use the sail container for builds (hopefully faster)! #197
Workflow file for this run
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
name: CI | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
jobs: | ||
build: | ||
runs-on: [ubuntu-24.04] | ||
container: ghcr.io/cheriot-platform/sail:latest | ||
shell: bash | ||
Check failure on line 18 in .github/workflows/compile.yml GitHub Actions / CIInvalid workflow file
|
||
options: "--entrypoint /bin/bash" | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@HEAD | ||
with: | ||
submodules: true | ||
- name: Build simulators | ||
run: | | ||
eval $(opam env) && make csim | ||
mkdir install | ||
cp c_emulator/cheriot_sim install | ||
cp LICENSE install/LICENCE-cheriot-sail | ||
cp sail-riscv/LICENCE install/LICENCE-sail-riscv | ||
- name: Build arch doc | ||
run: | | ||
eval $(opam env) && make -C archdoc | ||
cp archdoc/cheriot-architecture.pdf install | ||
mkdir -p _site/ | ||
cp archdoc/cheriot-architecture.pdf _site/ | ||
- name: Upload simulator artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: cheriot_sim | ||
path: install/ | ||
- name: Upload pages artifact | ||
uses: actions/upload-pages-artifact@v2 | ||
deploy: | ||
# Run only when landing, not as part of a PR | ||
if: ${{ github.event_name == 'push' }} | ||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: [ubuntu-24.04] | ||
needs: build | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v2 |