docker: fix run.sh script #2
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: Pull Request | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
concurrency: | ||
group: ${{ github.head_ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: hansbinderup/meson-gcc:1.0 | ||
options: --user user | ||
Check failure on line 16 in .github/workflows/pull_request.yml
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Clean | ||
run: scripts/clean.sh | ||
- name: Build release | ||
run: scripts/build.sh | ||
unit-tests: | ||
runs-on: ubuntu-latest | ||
container: hansbinderup/meson-gcc:1.0 | ||
options: --user user | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Clean | ||
run: scripts/clean.sh | ||
- name: Build and run unit tests | ||
run: scripts/unit_test.sh | ||
- name: Test Report | ||
uses: phoenix-actions/test-reporting@v15 | ||
if: success() || failure() | ||
with: | ||
name: Unit tests report | ||
path: .build-tests/meson-logs/testlog.junit.xml | ||
reporter: java-junit | ||