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

97 lines
2.1 KiB
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:
jobs:
test-why2-script:
2022-04-27 19:19:38 +02:00
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
2022-04-27 19:19:38 +02:00
include:
- os: [ ubuntu-latest, macos-latest ]
2022-05-04 18:17:33 +02:00
output: out/why2-test
2022-04-27 19:19:38 +02:00
configure: configure.sh
build: build.sh
app: why2
2022-04-27 19:19:38 +02:00
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
2022-04-27 19:19:38 +02:00
- name: Permissions
run: |
chmod +x ${{ matrix.configure }}
chmod +x ${{ matrix.build }}
- name: Preparation
2022-04-27 19:29:17 +02:00
run: sudo ./${{ matrix.configure }}
2022-04-27 19:19:38 +02:00
- name: Install WHY2 (Lib)
2022-05-01 16:27:10 +02:00
run: sudo ./${{ matrix.build }} install
- name: Install WHY2 (App)
2022-05-13 18:52:44 +02:00
run: sudo ./${{ matrix.build }} app
2022-05-01 16:27:10 +02:00
- name: Build WHY2 (Test)
run: ./${{ matrix.build }} test
2022-04-27 19:19:38 +02:00
- name: Test Lib
run: ./${{ matrix.output }}
- name: Test App
run: ${{ matrix.app }}
test-why2-makefile:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
include:
- os: [ ubuntu-latest, macos-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 }}