Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #239

Merged
merged 2 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

# Removes ·git to prevent opam from checking out submodueles
- name: Remove .git
run: rm -rf .git

- name: Setup OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v3
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

# Removes ·git to prevent opam from checking out submodueles
- name: Remove .git
run: rm -rf .git

- name: Setup OCaml 4.14
uses: ocaml/setup-ocaml@v3
with:
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/test-alt-ergo.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
name: Test Alt-Ergo

on:
push:
branches:
- main
pull_request:
branches:
- main
types: [ labeled ]

jobs:
test-alt-ergo:
if: contains(github.event.pull_request.labels.*.name, 'alt-ergo')
runs-on: ubuntu-latest
env:
OPAMCONFIRMLEVEL: unsafe-yes
steps:
- name: Checkout
uses: actions/checkout@v4

# Removes ·git to prevent opam from checking out submodueles
- name: Remove .git
run: rm -rf .git

- name: Setup OCaml 4.14
uses: ocaml/setup-ocaml@v3
with:
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/test-bitwuzla.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
name: Test Bitwuzla

on:
push:
branches:
- main
pull_request:
branches:
- main
types: [ labeled ]

jobs:
test-bitwuzla:
if: contains(github.event.pull_request.labels.*.name, 'bitwuzla')
runs-on: ubuntu-latest
env:
OPAMCONFIRMLEVEL: unsafe-yes
steps:
- name: Checkout
uses: actions/checkout@v4

# Removes ·git to prevent opam from checking out submodueles
- name: Remove .git
run: rm -rf .git

- name: Setup OCaml 4.14
uses: ocaml/setup-ocaml@v3
with:
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/test-colibri2.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
name: Test Colibri2

on:
push:
branches:
- main
pull_request:
branches:
- main
types: [ labeled ]

jobs:
test-colibri2:
if: contains(github.event.pull_request.labels.*.name, 'colibri2')
runs-on: ubuntu-latest
env:
OPAMCONFIRMLEVEL: unsafe-yes
steps:
- name: Checkout
uses: actions/checkout@v4

# Removes ·git to prevent opam from checking out submodueles
- name: Remove .git
run: rm -rf .git

- name: Setup OCaml 4.14
uses: ocaml/setup-ocaml@v3
with:
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/test-cvc5.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
name: Test cvc5

on:
push:
branches:
- main
pull_request:
branches:
- main
types: [ labeled ]

jobs:
test-cvc5:
if: contains(github.event.pull_request.labels.*.name, 'cvc5')
runs-on: ubuntu-latest
env:
OPAMJOBS: 4
Expand All @@ -18,6 +15,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

# Removes ·git to prevent opam from checking out submodueles
- name: Remove .git
run: rm -rf .git

- name: Setup OCaml 4.14
uses: ocaml/setup-ocaml@v3
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test-z3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

# Removes ·git to prevent opam from checking out submodueles
- name: Remove .git
run: rm -rf .git

- name: Setup OCaml 4.14
uses: ocaml/setup-ocaml@v3
with:
Expand Down