chore: go waku as client (#15)
* run go waku as a client only * notify nwaku devs when stuff fails * revert name * revert name * use role id * add my user id * remove role id * prepare for PR
This commit is contained in:
parent
de60598b6c
commit
dc25c6e51b
|
@ -1,4 +1,4 @@
|
|||
name: Go Waku Interop Tests
|
||||
name: Nim -> Go Waku Interop Tests
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
|
@ -14,6 +14,6 @@ jobs:
|
|||
uses: ./.github/workflows/test_common.yml
|
||||
secrets: inherit
|
||||
with:
|
||||
node1: "harbor.status.im/wakuorg/go-waku:latest"
|
||||
node1: "harbor.status.im/wakuorg/nwaku:latest"
|
||||
node2: "harbor.status.im/wakuorg/go-waku:latest"
|
||||
caller: "go"
|
|
@ -1,4 +1,4 @@
|
|||
name: Nim Waku Interop Tests
|
||||
name: Nim -> Nim Waku Interop Tests
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
|
|
|
@ -78,6 +78,8 @@ jobs:
|
|||
|
||||
- name: Create job summary
|
||||
if: always()
|
||||
env:
|
||||
JOB_STATUS: ${{ job.status }}
|
||||
run: |
|
||||
echo "## Run Information" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- **Event**: ${{ github.event_name }}" >> $GITHUB_STEP_SUMMARY
|
||||
|
@ -87,6 +89,9 @@ jobs:
|
|||
echo "- **Additonal Nodes**: ${{ env.ADDITIONAL_NODES }}" >> $GITHUB_STEP_SUMMARY
|
||||
echo "## Test Results" >> $GITHUB_STEP_SUMMARY
|
||||
echo "Allure report will be available at: https://waku-org.github.io/waku-interop-tests/${{ env.CALLER }}/${{ github.run_number }}" >> $GITHUB_STEP_SUMMARY
|
||||
if [ "$JOB_STATUS" != "success" ]; then
|
||||
echo "There are failures with nwaku node. cc <@&1111608257824440330>" >> $GITHUB_STEP_SUMMARY
|
||||
fi
|
||||
{
|
||||
echo 'JOB_SUMMARY<<EOF'
|
||||
cat $GITHUB_STEP_SUMMARY
|
||||
|
|
Loading…
Reference in New Issue