Uses the ninja build system instead of make #244
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: Simulated testing using verilator | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
actions: write | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
REPORT_ARTIFACT_NAME: ecap5-dproc-report-${{github.run_number}}-${{github.run_attempt}} | |
ARCH_ARTIFACT_NAME: ecap5-dproc-arch-${{github.run_number}}-${{github.run_attempt}} | |
BUILD_CACHE_KEY: build-directory-${{ github.run_id }}-${{ github.run_attempt }} | |
jobs: | |
prepare: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -GNinja | |
- name: Cache build directory | |
if: always() | |
uses: actions/cache/save@v4.0.1 | |
env: | |
cache-folder-path: ${{github.workspace}}/build | |
with: | |
path: ${{ env.cache-folder-path }} | |
key: ${{ runner.os }}-${{env.BUILD_CACHE_KEY}} | |
documentation: | |
runs-on: self-hosted | |
needs: prepare | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Import build directory | |
uses: actions/cache/restore@v4.0.1 | |
env: | |
cache-folder-path: ${{github.workspace}}/build | |
with: | |
path: ${{ env.cache-folder-path }} | |
key: ${{ runner.os }}-${{env.BUILD_CACHE_KEY}} | |
- name: Generate documentation | |
run: ninja -C ${{github.workspace}}/build docs | |
- name: Upload documentation | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{env.ARCH_ARTIFACT_NAME}} | |
path: ${{github.workspace}}/build/docs/documentation/build/html | |
lint: | |
runs-on: self-hosted | |
needs: prepare | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Import build directory | |
id: import-build | |
uses: actions/cache/restore@v4.0.1 | |
env: | |
cache-folder-path: ${{github.workspace}}/build | |
with: | |
path: ${{ env.cache-folder-path }} | |
key: ${{ runner.os }}-${{env.BUILD_CACHE_KEY}} | |
- name: Lint | |
run: ninja -C ${{github.workspace}}/build lint | |
- name: Delete Previous Cache | |
if: ${{ always() && steps.import-build.outputs.cache-hit == 'true'}} | |
run: gh cache delete "${{ runner.os }}-${{env.BUILD_CACHE_KEY}}" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Cache build directory | |
if: always() | |
uses: actions/cache/save@v4.0.1 | |
env: | |
cache-folder-path: ${{github.workspace}}/build | |
with: | |
path: ${{ env.cache-folder-path }} | |
key: ${{ runner.os }}-${{env.BUILD_CACHE_KEY}} | |
simulate: | |
runs-on: self-hosted | |
needs: lint | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Import build directory | |
id: import-build | |
uses: actions/cache/restore@v4.0.1 | |
env: | |
cache-folder-path: ${{github.workspace}}/build | |
with: | |
path: ${{ env.cache-folder-path }} | |
key: ${{ runner.os }}-${{env.BUILD_CACHE_KEY}} | |
- name: Build simulation | |
run: ninja -C ${{github.workspace}}/build build | |
- name: Simulate | |
id: simulate | |
# Enable -k option to simulate every module even if one fails | |
# Checks if there is any testdata | |
# Check if there is any fail in that testdata | |
run: >- | |
ninja -C ${{github.workspace}}/build -k 0 tests && | |
ls -A1q ${{github.workspace}}/build/tests/testdata/ | grep -q . && | |
(! grep -qe "[^;]*;0" ${{github.workspace}}/build/tests/testdata/*) | |
- name: Delete Previous Cache | |
if: ${{ always() && steps.import-build.outputs.cache-hit == 'true'}} | |
run: gh cache delete "${{ runner.os }}-${{env.BUILD_CACHE_KEY}}" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Cache build directory | |
if: always() | |
uses: actions/cache/save@v4.0.1 | |
env: | |
cache-folder-path: ${{github.workspace}}/build | |
with: | |
path: ${{ env.cache-folder-path }} | |
key: ${{ runner.os }}-${{env.BUILD_CACHE_KEY}} | |
report: | |
runs-on: self-hosted | |
needs: simulate | |
if: always() | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Import build directory | |
uses: actions/cache/restore@v4.0.1 | |
env: | |
cache-folder-path: ${{github.workspace}}/build | |
with: | |
path: ${{ env.cache-folder-path }} | |
key: ${{ runner.os }}-${{env.BUILD_CACHE_KEY}} | |
- name: Generate report | |
run: >- | |
ninja -C ${{github.workspace}}/build report_markdown && | |
ninja -C ${{github.workspace}}/build report | |
- name: Write summary | |
run: cat ${{github.workspace}}/build/report.md >> $GITHUB_STEP_SUMMARY | |
- name: Upload report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{env.REPORT_ARTIFACT_NAME}} | |
path: ${{github.workspace}}/build/report.html | |
- name: Check for report errors | |
run: (! grep -qe "\[\!CAUTION\]" ${{github.workspace}}/build/report.md) | |
- name: Generate badges | |
if: ${{ github.ref == 'refs/heads/main' }} | |
run: ninja -C ${{github.workspace}}/build badges; | |
- name: Check generated badges | |
if: ${{ always() && github.ref == 'refs/heads/main' }} | |
run: >- | |
if [ ! -f "build/test-result-badge.json" ]; then | |
mkdir -p build && | |
echo "{\"schemaVersion\": 1, \"label\": \"Test result\", \"message\": \"Failed\", \"color\": \"red\"}" > build/test-result-badge.json; | |
fi | |
- name: Upload test result badge | |
if: ${{ always() && github.ref == 'refs/heads/main' }} | |
uses: exuanbo/actions-deploy-gist@v1.1.4 | |
with: | |
token: ${{ secrets.GIST_SECRET }} | |
gist_id: 32195ea7fa70c0218ef3f9952504c59e | |
file_path: build/test-result-badge.json | |
file_type: text | |
- name: Upload traceability result badge | |
if: ${{ always() && github.ref == 'refs/heads/main' }} | |
uses: exuanbo/actions-deploy-gist@v1.1.4 | |
with: | |
token: ${{ secrets.GIST_SECRET }} | |
gist_id: 32195ea7fa70c0218ef3f9952504c59e | |
file_path: build/traceability-result-badge.json | |
file_type: text |