Skip to content

wip: add index file #104

wip: add index file

wip: add index file #104

Workflow file for this run

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