Skip to content

Commit

Permalink
.github/workflows: use z3-images repository for prebuilt z3 images (#…
Browse files Browse the repository at this point in the history
…2104)

* .github/workflows: use z3-images repository for prebuilt z3 images

* Set Version: 1.0.312

---------

Co-authored-by: devops <[email protected]>
  • Loading branch information
ehildenb and devops authored Oct 5, 2023
1 parent c0e85ad commit 26b3b3c
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 31 deletions.
6 changes: 1 addition & 5 deletions .github/actions/with-docker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,11 @@ runs:
USER=github-user
GROUP=${USER}
Z3_VERSION=4.12.1
Z3_VERSION=$(cat deps/z3)
K_VERSION=$(cat deps/k_release)
USER_ID=1000
GROUP_ID=${USER_ID}
docker build . \
--file .github/workflows/Dockerfile.z3 \
--tag z3:${Z3_VERSION} \
docker build . --file ${DOCKERFILE} \
--tag ${TAG_NAME} \
--build-arg USER_ID=${USER_ID} \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG LLVM_VERSION
FROM ghcr.io/foundry-rs/foundry:nightly-ca67d15f4abd46394b324c50e21e66f306a1162d as FOUNDRY

ARG Z3_VERSION
FROM z3:${Z3_VERSION} as Z3
FROM runtimeverificationinc/ubuntu-jammy-z3:${Z3_VERSION} as Z3

ARG K_VERSION
FROM runtimeverificationinc/kframework-k:ubuntu-jammy-${K_VERSION}
Expand Down
22 changes: 0 additions & 22 deletions .github/workflows/Dockerfile.z3

This file was deleted.

1 change: 1 addition & 0 deletions deps/z3
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4.12.1
2 changes: 1 addition & 1 deletion kevm-pyk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "kevm-pyk"
version = "1.0.311"
version = "1.0.312"
description = ""
authors = [
"Runtime Verification, Inc. <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion kevm-pyk/src/kevm_pyk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from typing import Final


VERSION: Final = '1.0.311'
VERSION: Final = '1.0.312'
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.311
1.0.312

0 comments on commit 26b3b3c

Please sign in to comment.