Skip to content

Commit

Permalink
Move Additional Workflows to Ephemeral Runners (#2153)
Browse files Browse the repository at this point in the history
* Move Quality check to Ephemeral flyweight runner

* Set Version: 1.0.336

* Update test-pr.yml

* Update test-pr.yml

Install python to ephemeral runner

* Set Version: 1.0.339

* Set Version: 1.0.340

---------

Co-authored-by: devops <[email protected]>
Co-authored-by: rv-jenkins <[email protected]>
  • Loading branch information
3 people authored Nov 8, 2023
1 parent 4109a2c commit caeb2df
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

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

0 comments on commit caeb2df

Please sign in to comment.