From 2a3c7628df7ab5aff2165a2e1b89b52726373015 Mon Sep 17 00:00:00 2001 From: Freeman <105403280+F-WRunTime@users.noreply.github.com> Date: Thu, 2 Nov 2023 18:31:51 -0600 Subject: [PATCH] Move all runs to internal runners (#2123) * 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 Co-authored-by: rv-jenkins --- .github/workflows/test-pr.yml | 13 +++++++++---- kevm-pyk/pyproject.toml | 2 +- kevm-pyk/src/kevm_pyk/__init__.py | 2 +- package/version | 2 +- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml index 0e5a4b0849..ad169e60d4 100644 --- a/.github/workflows/test-pr.yml +++ b/.github/workflows/test-pr.yml @@ -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 @@ -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' @@ -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' diff --git a/kevm-pyk/pyproject.toml b/kevm-pyk/pyproject.toml index 016267127c..221c6006b6 100644 --- a/kevm-pyk/pyproject.toml +++ b/kevm-pyk/pyproject.toml @@ -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. ", diff --git a/kevm-pyk/src/kevm_pyk/__init__.py b/kevm-pyk/src/kevm_pyk/__init__.py index 0d32562d73..dfb5e3055b 100644 --- a/kevm-pyk/src/kevm_pyk/__init__.py +++ b/kevm-pyk/src/kevm_pyk/__init__.py @@ -6,4 +6,4 @@ from typing import Final -VERSION: Final = '1.0.334' +VERSION: Final = '1.0.335' diff --git a/package/version b/package/version index 21bb8ceede..f0f99b93c3 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -1.0.334 +1.0.335