Updates for running IPLD-ETH CI tests #414
Labels
No Label
bug
documentation
duplicate
enhancement
feature
good first issue
help wanted
in progress
invalid
question
wontfix
Copied from Github
Kind/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No Milestone
No project
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cerc-io/stack-orchestrator#414
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "roy/ipld-eth-ci"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
A few patches needed to make this work in CI for our IPLD-ETH projects, e.g. on https://github.com/cerc-io/ipld-eth-server/pull/238.
May resolve https://github.com/cerc-io/stack-orchestrator/issues/416
I don't see -modern images for lcli (only for lighthouse) : https://hub.docker.com/r/sigp/lcli/tags
Yeah, seems lcli is always published with PORTABLE=true
@ -1,4 +1,5 @@
FROM sigp/lighthouse:v4.1.0-modern
ARG TAG_SUFFIX="-modern"
FROM sigp/lighthouse:v4.1.0${TAG_SUFFIX}
Remove
-modern
suffix default since that tag isn't used for this image?@ -5,3 +5,3 @@
fi
set -e
echo "Running stack-orchestrator Ethereum fixturenet test"
set -e
was necessary, no?@ -5,3 +5,3 @@
fi
set -e
echo "Running stack-orchestrator Ethereum fixturenet test"
Already set on line 2 :)
@ -5,3 +5,3 @@
fi
set -e
echo "Running stack-orchestrator Ethereum fixturenet test"
The magic of context diffs without enough context ;)
@ -1,4 +1,5 @@
FROM sigp/lighthouse:v4.1.0-modern
ARG TAG_SUFFIX="-modern"
FROM sigp/lighthouse:v4.1.0${TAG_SUFFIX}
Not sure I follow - this currently uses
modern
, should we default to not using it?@ -1,4 +1,5 @@
FROM sigp/lighthouse:v4.1.0-modern
ARG TAG_SUFFIX="-modern"
FROM sigp/lighthouse:v4.1.0${TAG_SUFFIX}
Bah, looking at the wrong image. I thought this was lcli.