WHY2/.github/workflows/why2-test.yml

51 lines
997 B
YAML
Raw Normal View History

2022-05-12 19:07:01 +02:00
name: Test WHY2
2022-04-27 19:19:38 +02:00
on:
push:
branches: [ development ]
workflow_dispatch:
schedule:
- cron: '0 * * * *'
2022-04-27 19:19:38 +02:00
jobs:
test-why2:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
include:
- os: ubuntu-latest
output: out/why2-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 }}
- name: Test App
run: ${{ matrix.app }}