Skip to content

Commit

Permalink
remove cvc4 from github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
wilcoxjay committed Apr 9, 2024
1 parent ef9fd7d commit 05509af
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
python-version: ["3.8"]
env:
Z3_VERSION: "4.11.2"
CVC4_BINARY_URL: "https://github.com/CVC4/CVC4/releases/download/1.8/cvc4-1.8-x86_64-linux-opt"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -30,11 +29,4 @@ jobs:
echo PYTHONPATH=`pwd`/z3-${Z3_VERSION}-x64-glibc-2.31/bin/python >> $GITHUB_ENV
- run: z3 --version # make sure z3 is installed
- run: python3 -c 'import z3' # make sure z3 can be imported from python
- name: Install CVC4
run: |
mkdir cvc4
wget -nv -O cvc4/cvc4 ${CVC4_BINARY_URL}
chmod +x cvc4/cvc4
echo `pwd`/cvc4 >> $GITHUB_PATH
- run: cvc4 --version # make sure cvc4 is installed
- run: make test
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ MYPYVY_OPTS := --seed=0 --log=info --timeout 2000 --print-cmdline

SRC_FILES := $(shell find src -name '*.py' -not -name '*parsetab*' -not -path '*/ply/*')

test: check check-imports unit typecheck verify verify.cvc4 trace updr pd-old pd sep
test: check check-imports unit typecheck verify trace updr pd-old pd sep

style:
$(PYTHON) -m flake8 $(SRC_FILES) || true
Expand Down

0 comments on commit 05509af

Please sign in to comment.