crates/examples/sel4cp/http-server: Refactor #17
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: | |
workflow_dispatch: | |
jobs: | |
build-and-check: | |
name: Build and check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Prepare to maximize build space | |
run: sudo mkdir /nix | |
- name: Maximize build space | |
uses: easimon/maximize-build-space@master | |
with: | |
build-mount-path: /nix | |
root-reserve-mb: 8192 | |
remove-dotnet: 'true' | |
remove-android: 'true' | |
remove-haskell: 'true' | |
remove-codeql: 'true' | |
remove-docker-images: 'true' | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v22 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: cachix/cachix-action@v12 | |
with: | |
name: coliasgroup | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Build and check | |
run: make -C hacking/ci/github-actions check | |
- name: Expose docs | |
run: make -C hacking/ci/github-actions docs | |
- name: Upload Pages artifact | |
if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch) | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: out/html | |
deploy-docs: | |
name: Deploy docs | |
if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch) | |
needs: build-and-check | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |