GH yml fix #117
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: CI-testing | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
job2: | |
name: CI-testing | |
strategy: | |
matrix: | |
# os: [ubuntu-18.04, ubuntu-20.04, ubuntu-22.04] | |
os: [ubuntu-20.04, ubuntu-22.04] | |
compiler: [g++, clang++] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: --- Download catch --- | |
run: wget https://github.com/catchorg/Catch2/releases/download/v2.13.6/catch.hpp && mv catch.hpp misc/ | |
- name: --- Download Tinyxml2 --- | |
run: sudo apt-get -y install libtinyxml2-dev | |
- name: check version | |
run: gcc --version; clang --version | |
- name: --- Start make --- | |
run: whoami && pwd && make testall USE_TINYXML2=Y |