This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
39
unikernel/duniverse/mirage-crypto/.github/workflows/windows.yml
vendored
Normal file
39
unikernel/duniverse/mirage-crypto/.github/workflows/windows.yml
vendored
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
name: Crypto
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
name: Tests
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
ocaml-version: ["4.14.2"]
|
||||
operating-system: [windows-latest]
|
||||
|
||||
runs-on: ${{ matrix.operating-system }}
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Use OCaml ${{ matrix.ocaml-compiler }}
|
||||
uses: ocaml/setup-ocaml@v3
|
||||
with:
|
||||
opam-repositories: |
|
||||
opam-repository-mingw: https://github.com/ocaml-opam/opam-repository-mingw.git#sunset
|
||||
default: https://github.com/ocaml/opam-repository.git
|
||||
opam-local-packages: |
|
||||
*.opam
|
||||
!mirage-crypto-rng-miou-unix.opam
|
||||
ocaml-compiler: ${{ matrix.ocaml-version }}
|
||||
|
||||
- name: Install dependencies
|
||||
run: opam install --deps-only -t mirage-crypto mirage-crypto-rng mirage-crypto-rng-mirage mirage-crypto-pk mirage-crypto-ec
|
||||
|
||||
- name: Build
|
||||
run: opam exec -- dune build -p mirage-crypto,mirage-crypto-rng,mirage-crypto-rng-mirage,mirage-crypto-pk,mirage-crypto-ec
|
||||
|
||||
- name: Test
|
||||
run: opam exec -- dune runtest -p mirage-crypto,mirage-crypto-rng,mirage-crypto-rng-mirage,mirage-crypto-pk,mirage-crypto-ec
|
||||
Loading…
Add table
Add a link
Reference in a new issue