Add regression test action #9
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: Regression test | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
regress: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Github Repo Action | |
uses: actions/checkout@v4 | |
- name: Setup apptainer | |
uses: eWaterCycle/setup-apptainer@v2.0.0 | |
- name: Get container from cache | |
id: cache-sif | |
uses: actions/cache@v3 | |
with: | |
path: .singularity/image.sif | |
key: oras://docker.io/riscvintl/spec-generator:0.1 | |
- if: ${{ steps.cache-sif.outputs.cache-hit != 'true' }} | |
name: Build container | |
run: ./bin/build_container | |
- name: Setup project | |
run: apptainer run --home ${{ github.workspace }}/.home .singularity/image.sif ./bin/setup | |
- name: Build html documentation for generic_rv64 | |
run: apptainer run --home ${{ github.workspace }}/.home .singularity/image.sif bundle exec rake gen:html[generic_rv64] |