Skip to content

docker: fix run.sh script #1

docker: fix run.sh script

docker: fix run.sh script #1

Workflow file for this run

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
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
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