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 cb59642
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,18 @@ 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
git add -u
git commit -m "Remove submodules"
- name: df after checkout
run: df -h

Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/test-z3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@ 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
git add -u
git commit -m "Remove submodules"
- name: Setup OCaml 4.14
uses: ocaml/setup-ocaml@v3
with:
Expand Down

0 comments on commit cb59642

Please sign in to comment.