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

switch Verify PR workflow to EKS runners #1363

Merged
merged 2 commits into from
Apr 11, 2023
Merged
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
14 changes: 7 additions & 7 deletions .github/workflows/verify-pr-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
- network: mainnet
spec: frequency
branch_alias: pr
runs-on: [self-hosted, Linux, X64, build]
runs-on: [self-hosted, Linux, X64, testing, v2]
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to keep testing label for now, since devOps cannot rename labels on the legacy runners. Will rename to build once all workflows have been switched.

container: ubuntu:20.04
env:
NETWORK: mainnet
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
needs: changes
if: needs.changes.outputs.rust == 'true'
name: Lint Rust Code
runs-on: [self-hosted, Linux, X64, build]
runs-on: [self-hosted, Linux, X64, testing, v2]
container: ubuntu:20.04
steps:
- name: Install Required Packages
Expand All @@ -231,7 +231,7 @@ jobs:
needs: changes
if: needs.changes.outputs.rust == 'true'
name: Verify Rust Developer Docs
runs-on: [self-hosted, Linux, X64, build]
runs-on: [self-hosted, Linux, X64, testing, v2]
container: ubuntu:20.04
steps:
- name: Install Required Packages
Expand All @@ -252,7 +252,7 @@ jobs:
needs: changes
if: needs.changes.outputs.rust == 'true'
name: Verify Rust Packages and Dependencies
runs-on: [self-hosted, Linux, X64, build]
runs-on: [self-hosted, Linux, X64, testing, v2]
container: ubuntu:20.04
steps:
- name: Install Required Packages
Expand All @@ -272,7 +272,7 @@ jobs:
needs: changes
if: needs.changes.outputs.rust == 'true'
name: Run Rust Tests
runs-on: [self-hosted, Linux, X64, build]
runs-on: [self-hosted, Linux, X64, testing, v2]
container: ubuntu:20.04
steps:
- name: Install Required Packages
Expand All @@ -293,7 +293,7 @@ jobs:
needs: changes
if: needs.changes.outputs.rust == 'true'
name: Calculate Code Coverage
runs-on: [self-hosted, Linux, X64, build]
runs-on: [self-hosted, Linux, X64, testing, v2]
container: ubuntu:20.04
steps:
- name: Install Required Packages
Expand Down Expand Up @@ -356,7 +356,7 @@ jobs:
package: frequency-runtime
runtime-dir: runtime/frequency
features: frequency
runs-on: [self-hosted, Linux, X64, build]
runs-on: [self-hosted, Linux, X64, testing, v2]
container: ubuntu:20.04
steps:
- name: Install Required Packages
Expand Down