-
Notifications
You must be signed in to change notification settings - Fork 784
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing download image step and remove unused
lcli
dependencies.
- Loading branch information
1 parent
be80833
commit 48c8d40
Showing
5 changed files
with
45 additions
and
22 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 |
---|---|---|
|
@@ -18,6 +18,10 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: jpribyl/[email protected] | ||
# Ignore the failure of a step and avoid terminating the job. | ||
continue-on-error: true | ||
|
||
- name: Build Docker image | ||
run: | | ||
docker build --build-arg FEATURES=portable -t lighthouse:local . | ||
|
@@ -45,6 +49,15 @@ jobs: | |
sudo apt install -y kurtosis-cli yq | ||
kurtosis analytics disable | ||
- name: Download Docker image artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: lighthouse-docker | ||
path: . | ||
|
||
- name: Load Docker image | ||
run: docker load -i lighthouse-docker.tar | ||
|
||
- name: Start local testnet | ||
run: ./start_local_testnet.sh -e local -c -b false && sleep 60 | ||
working-directory: scripts/local_testnet | ||
|
@@ -84,6 +97,15 @@ jobs: | |
sudo apt install -y kurtosis-cli yq | ||
kurtosis analytics disable | ||
- name: Download Docker image artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: lighthouse-docker | ||
path: . | ||
|
||
- name: Load Docker image | ||
run: docker load -i lighthouse-docker.tar | ||
|
||
- name: Run the doppelganger protection failure test script | ||
run: | | ||
./doppelganger_protection.sh failure | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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