Skip to content

Commit

Permalink
Remove .gitmodules
Browse files Browse the repository at this point in the history
  • Loading branch information
filipeom committed Oct 23, 2024
1 parent de8cce8 commit 3ba582d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Remove git submodules
run: |
git rm --cached ./bench/smt-comp
git rm --cached ./bench/smt-testcomp23
rm -rf ./bench/smt-comp
rm -rf ./bench/smt-testcomp23
rm -rf .git/modules/bench/smt-comp
rm -rf .git/modules/bench/smt-testcomp23
rm .gitmodules || true
- name: df after checkout
run: df -h

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

- name: Remove git submodules
run: |
git rm --cached ./bench/smt-comp
git rm --cached ./bench/smt-testcomp23
rm -rf ./bench/smt-comp
rm -rf ./bench/smt-testcomp23
rm -rf .git/modules/bench/smt-comp
rm -rf .git/modules/bench/smt-testcomp23
rm .gitmodules || true
- name: Setup OCaml 4.14
uses: ocaml/setup-ocaml@v3
with:
Expand Down

0 comments on commit 3ba582d

Please sign in to comment.