Skip to content

Commit

Permalink
fix: CI Environment - revert runner & use different toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
epociask committed Aug 5, 2024
1 parent 4a90ddd commit fb316e8
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/arbitrator-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ env:
jobs:
arbitrator:
name: Run Arbitrator tests
runs-on: linux-xl
runs-on: linux-2xl
steps:
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/arbitrator-skip-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
arbitrator:
name: Run Arbitrator tests
runs-on: linux-xl
runs-on: linux-2xl
steps:
- name: Do nothing
run: echo "doing nothing"
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
test:
name: Go Tests
runs-on: linux-xl
runs-on: linux-2xl

# Creates a redis container for redis tests
services:
Expand Down Expand Up @@ -67,15 +67,17 @@ jobs:
id: install-rust-nightly
with:
profile: minimal
toolchain: "nightly"

toolchain: "nightly-2024-07-30"
- name: Install rust wasm targets
run: rustup target add wasm32-wasi wasm32-unknown-unknown

- name: Install nightly wasm targets
run: |
rustup component add rust-src --toolchain nightly
rustup target add wasm32-unknown-unknown --toolchain nightly
nightly_toolchain='nightly-2024-07-30'
echo 'STYLUS_NIGHTLY_VER=+'"$nightly_toolchain" >> "$GITHUB_ENV"
rustup component add rust-src --toolchain "$nightly_toolchain"
rustup target add wasm32-unknown-unknown --toolchain "$nightly_toolchain"
- name: Cache Build Products
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
analyze:
name: Analyze
if: github.repository == 'Layr-Labs/nitro' # don't run in any forks without "Advanced Security" enabled
runs-on: linux-xl
runs-on: linux-2xl
permissions:
actions: read
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-eigenda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
docker:
runs-on: linux-xl
runs-on: linux-2xl
strategy:
matrix:
include:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
docker:
name: Docker build
runs-on: linux-xl
runs-on: linux-2xl
services:
# local registery
registry:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
build_and_run:
runs-on: linux-xl
runs-on: linux-2xl

steps:
- name: Checkout
Expand Down

0 comments on commit fb316e8

Please sign in to comment.