mirror of
https://github.com/lemire/fast_double_parser.git
synced 2025-04-03 20:04:57 +00:00
Tweaks.
This commit is contained in:
parent
5c8d46cc09
commit
eb16768ad9
2 changed files with 21 additions and 16 deletions
21
.github/workflows/rhub.yml
vendored
Normal file
21
.github/workflows/rhub.yml
vendored
Normal 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
|
16
.github/workflows/solaris.yml
vendored
16
.github/workflows/solaris.yml
vendored
|
@ -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
|
Loading…
Add table
Reference in a new issue