Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change concurrency to be unique per test requested #1989

Closed
wants to merge 5 commits into from
Closed
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
6 changes: 2 additions & 4 deletions .github/workflows/user-run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,11 @@ on:
- 'Nix'
- 'DockerHub Image Dry Run'


concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.TestType }}
cancel-in-progress: true

jobs:

kevm-pyk-code-quality-checks:
if: ${{ github.event.inputs.TestType == 'Pyk Code Quality Checks' }}
name: 'Code Quality Checks'
Expand Down Expand Up @@ -124,6 +122,7 @@ jobs:
docker stop --time=0 kevm-ci-haskell-${GITHUB_SHA}

test-prove-foundry:
if: ${{ github.event.inputs.TestType == 'Prove Foundry' }}
name: 'Build and Test KEVM Foundry proofs'
runs-on: [self-hosted, linux, huge]
timeout-minutes: 150
Expand Down Expand Up @@ -209,7 +208,6 @@ jobs:
run: GC_DONT_GC=1 nix build --extra-experimental-features 'nix-command flakes' --print-build-logs .#kevm-test

dockerhub-image-dry-run:
# When TestType is 'DockerHub Image Dry Run', this job will be run.
if: ${{ github.event.inputs.TestType == 'DockerHub Image Dry Run' }}
name: 'Build Ubuntu Jammy DockerHub Image'
runs-on: [self-hosted, linux, normal]
Expand Down
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.243"
version = "1.0.244"
description = ""
authors = [
"Runtime Verification, Inc. <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion package/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
kevm (1.0.243) unstable; urgency=medium
kevm (1.0.244) unstable; urgency=medium

* Initial Release.

Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.243
1.0.244
Loading