docsite updates: links and spelling #1042
Workflow file for this run
This file contains hidden or 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
# Copyright 2021, Proofcraft Pty Ltd | |
# | |
# SPDX-License-Identifier: BSD-2-Clause | |
name: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- 'LICENSES/**' | |
- '.*' | |
# allow manual trigger | |
workflow_dispatch: | |
# allow explicit trigger from other repos when dependencies have changed | |
repository_dispatch: | |
types: [deps-update] | |
jobs: | |
code: | |
name: Freeze Code | |
runs-on: ubuntu-latest | |
outputs: | |
xml: ${{ steps.repo.outputs.xml }} | |
steps: | |
- id: repo | |
uses: seL4/ci-actions/repo-checkout@master | |
with: | |
manifest_repo: sel4-tutorials-manifest | |
manifest: master.xml | |
test: | |
name: Tutorial Solution | |
needs: code | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
app: | |
- capabilities | |
- libraries-1 | |
- libraries-2 | |
- libraries-3 | |
- libraries-4 | |
- hello-camkes-0 | |
- hello-camkes-1 | |
- hello-camkes-2 | |
- hello-camkes-timer | |
- hello-world | |
- interrupts | |
- ipc | |
- mapping | |
- notifications | |
- untyped | |
- threads | |
- fault-handlers | |
- mcs | |
steps: | |
- uses: seL4/ci-actions/tutorials@master | |
with: | |
app: ${{ matrix.app }} | |
xml: ${{ needs.code.outputs.xml }} | |
deploy: | |
name: Deploy manifest | |
if: ${{ github.repository_owner == 'seL4' && github.event_name != 'pull_request' }} | |
runs-on: ubuntu-22.04 | |
needs: [test, code] | |
steps: | |
- name: Deploy | |
uses: seL4/ci-actions/manifest-deploy@master | |
with: | |
xml: ${{ needs.code.outputs.xml }} | |
manifest_repo: sel4-tutorials-manifest | |
env: | |
GH_SSH: ${{ secrets.CI_SSH }} |