aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/compile.yml
blob: 865c748a582baf446fdae20b8eef7579d5c78c65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: CI

on: [push, pull_request, workflow_dispatch]

jobs:
  build:
    runs-on: ubuntu-22.04
    steps:
    - name: Install packages
      run: sudo apt install -y opam zlib1g-dev pkg-config libgmp-dev z3 device-tree-compiler
    - name: Check out repository code
      uses: actions/checkout@HEAD
      with:
        submodules: true
    - name: Ensure pre-commit checks pass
      run: pip install pre-commit && pre-commit run --all-files --show-diff-on-failure --color=always
    - name: Init opam
      run: opam init --disable-sandboxing -y
    - name: Install sail
      run: opam install -y sail
    - name: Build and test simulators
      run: eval $(opam env) && test/run_tests.sh
    - name: Upload test results
      if: always()
      uses: actions/upload-artifact@v4
      with:
        name: tests.xml
        path: test/tests.xml
    - name: Upload event payload
      if: always()
      uses: actions/upload-artifact@v4
      with:
        name: event.json
        path: ${{ github.event_path }}