This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
32
unikernel/duniverse/Zarith/.github/workflows/CI.yml
vendored
Normal file
32
unikernel/duniverse/Zarith/.github/workflows/CI.yml
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
name: CI
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
Ubuntu:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install packages
|
||||
run: sudo apt-get install ocaml-nox libgmp-dev
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: configure tree
|
||||
run: ./configure
|
||||
- name: Build
|
||||
run: make
|
||||
- name: Run the testsuite
|
||||
run: make -C tests test
|
||||
|
||||
MacOS:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- name: Install packages
|
||||
run: brew install ocaml ocaml-findlib gmp
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: configure tree
|
||||
run: ./configure
|
||||
- name: Build
|
||||
run: make
|
||||
- name: Run the testsuite
|
||||
run: make -C tests test
|
||||
Loading…
Add table
Add a link
Reference in a new issue