Always re-enable blocking mode #136
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: Linux | |
on: | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
make | |
cd Tests | |
make | |
- name: Build Debug | |
run: | | |
make DEBUG=1 | |
cd Tests | |
make DEBUG=1 | |
- name: Test | |
run: | | |
cd Tests | |
for file in Release/T_*.debug; do $file; done | |
- name: Test Debug | |
run: | | |
cd Tests | |
for file in Debug/T_*.debug; do $file; done | |
- name: Archive Libraries | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Linux-Libraries | |
path: | | |
Debug/*.a | |
Release/*.a |