forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Revert kurtosis test back to CCI runner (ethereum-optimism#12500)
We're seeing issues with concurrent usage of CCI that are causing builds to fail.
- Loading branch information
Showing
1 changed file
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -796,9 +796,22 @@ jobs: | |
description: Test directory | ||
type: string | ||
default: "./..." | ||
machine: true | ||
resource_class: ethereum-optimism/latitude-1 | ||
machine: | ||
image: <<pipeline.parameters.base_image>> | ||
resource_class: xlarge | ||
steps: | ||
- run: | ||
name: Install components | ||
command: | | ||
go version | ||
go install gotest.tools/[email protected] | ||
- run: | ||
name: Install Kurtosis | ||
command: | | ||
echo "deb [trusted=yes] https://apt.fury.io/kurtosis-tech/ /" | sudo tee /etc/apt/sources.list.d/kurtosis.list | ||
sudo apt update | ||
sudo apt install kurtosis-cli=1.3.0 | ||
kurtosis engine start | ||
- checkout | ||
- when: | ||
condition: <<parameters.uses_artifacts>> | ||
|