Skip to content
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