This commit is contained in:
Daniel Lemire 2020-11-10 10:15:25 -05:00
parent 5c8d46cc09
commit eb16768ad9
2 changed files with 21 additions and 16 deletions

21
.github/workflows/rhub.yml vendored Normal file
View file

@ -0,0 +1,21 @@
name: rhub
'on':
- push
- pull_request
jobs:
ubuntu-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: start docker
run: |
docker run -w /src -dit --name rhub -v $PWD:/src rhub/rocker-gcc-san
echo 'docker exec rhub "$@";' > ./rhub.sh
chmod +x ./rhub.sh
- name: build
run: |
./rhub.sh c++ tests/unit.cpp -I include
- name: test
run: |
./rhub.sh ./a.out

View file

@ -1,16 +0,0 @@
name: Solaris
on: [push]
jobs:
testsolaris:
runs-on: macos-latest
name: A job to run test Solaris
steps:
- uses: actions/checkout@v2
- name: Test in solaris
id: test
uses: vmactions/solaris-vm@v0.0.1
with:
run: |
c++ tests/unit.cpp -Iinclude -std=c++11