-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: adding new job in the CI.yml file #3193
base: master
Are you sure you want to change the base?
Conversation
You can find the image built from this PR at
Built from d0ecc16 |
.github/workflows/ci.yml
Outdated
@@ -126,6 +126,15 @@ jobs: | |||
uses: waku-org/nwaku/.github/workflows/container-image.yml@master | |||
secrets: inherit | |||
|
|||
QA_tests: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's name it somthing more suggestive, ex:
nwaku-nwaku-interop-tests
because we will also have at some point
nwaku-gowaku-interop-tests
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
.github/workflows/ci.yml
Outdated
@@ -126,6 +126,15 @@ jobs: | |||
uses: waku-org/nwaku/.github/workflows/container-image.yml@master | |||
secrets: inherit | |||
|
|||
QA_tests: | |||
needs: build-docker-image | |||
uses: waku-org/waku-interop-tests/.github/workflows/nim_waku_PR.yml@smoke_tests |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please don't forget to update the branch when the interop PR get's merged to master
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
@AYAHASSAN287 : Please add one or more reviewers from nwaku team. We need at least two approval to be able to merge. |
.github/workflows/ci.yml
Outdated
@@ -126,6 +126,15 @@ jobs: | |||
uses: waku-org/nwaku/.github/workflows/container-image.yml@master | |||
secrets: inherit | |||
|
|||
QA_tests: | |||
needs: build-docker-image | |||
uses: waku-org/waku-interop-tests/.github/workflows/nim_waku_PR.yml@master |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of using master
I think it is better to use a fixed tag so that the changes in your master
doesn't impact our CI :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
.github/workflows/ci.yml
Outdated
@@ -126,6 +126,15 @@ jobs: | |||
uses: waku-org/nwaku/.github/workflows/container-image.yml@master | |||
secrets: inherit | |||
|
|||
nwaku-nwaku-interop-tests: | |||
needs: build-docker-image | |||
uses: waku-org/waku-interop-tests/.github/workflows/nim_waku_PR.yml@SMOKE_TESTS |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we have such branch on waku-interop-tests side?
Description
this is temp branch to test new workflow
Changes