Skip to content

Commit

Permalink
Move all runs to internal runners (#2123)
Browse files Browse the repository at this point in the history
* Move all runs to internal runners

* Set Version: 1.0.319

* Commit without needs first breaks post jobs from running

* Poetry installed on runners already

* Install python before poetry

* Same python > Poetry in quality check

* Set Version: 1.0.320

* Set Version: 1.0.321

* Re-add token for checkout otherwise, CI doesn't run after Bump push

* Set Version: 1.0.333

* Set Version: 1.0.334

* Set Version: 1.0.335

---------

Co-authored-by: devops <[email protected]>
Co-authored-by: rv-jenkins <[email protected]>
  • Loading branch information
3 people authored Nov 3, 2023
1 parent 87b8138 commit 2a3c762
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

version-bump:
name: 'Version Bump'
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, flyweight-ephemeral]
steps:
- name: 'Check out code'
uses: actions/checkout@v3
Expand All @@ -36,12 +36,14 @@ jobs:
run: git push origin HEAD:${GITHUB_HEAD_REF}

kevm-pyk-code-quality-checks:
needs: version-bump
name: 'Code Quality Checks'
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, flyweight]
steps:
- name: 'Check out code'
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: 'Install Poetry'
uses: Gr1N/setup-poetry@v8
- name: 'Run code quality checks'
Expand All @@ -52,13 +54,16 @@ jobs:
kevm-pyk-unit-tests:
needs: kevm-pyk-code-quality-checks
name: 'Unit Tests'
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, normal]
steps:
- name: 'Check out code'
uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: 'Install Poetry'
uses: Gr1N/setup-poetry@v8
- name: 'Run unit tests'
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.334"
version = "1.0.335"
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.334'
VERSION: Final = '1.0.335'
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.334
1.0.335

0 comments on commit 2a3c762

Please sign in to comment.