From cd271215921ee437c507f8a4ae43a337106f048b Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Fri, 18 Nov 2022 18:09:56 +0100 Subject: [PATCH] created why2-logger-test workflow I definetly didn't just copy why2-core-test --- .github/workflows/why2-logger-test.yml | 48 ++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/why2-logger-test.yml diff --git a/.github/workflows/why2-logger-test.yml b/.github/workflows/why2-logger-test.yml new file mode 100644 index 0000000..1067922 --- /dev/null +++ b/.github/workflows/why2-logger-test.yml @@ -0,0 +1,48 @@ +name: Test WHY2-logger + +on: + push: + branches: [ development ] + workflow_dispatch: + schedule: + - cron: '40 22 12 4 2' + +jobs: + test-why2: + runs-on: ${{ matrix.os }} + + strategy: + matrix: + os: [ ubuntu-latest ] + include: + - os: ubuntu-latest + output: out/why2-logger-test + configure: configure.sh + app: why2 + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + with: + ref: development + + - if: matrix.os == 'ubuntu-latest' + name: Update packages + run: | + sudo apt update +# sudo apt upgrade + + - name: Permissions + run: chmod +x ${{ matrix.configure }} + + - name: Preparation + run: sudo ./${{ matrix.configure }} + + - name: Install WHY2 + run: sudo make install + + - name: Build WHY2 Test + run: make test + + - name: Test Lib + run: ./${{ matrix.output }} \ No newline at end of file