-
Notifications
You must be signed in to change notification settings - Fork 56
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 55624ea |
.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
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.
Thanks @AYAHASSAN287!
Nevertheless, I see the master
is being used
uses: waku-org/waku-interop-tests/.github/workflows/nim_waku_PR.yml@master
What do you mean by "done" :) ?
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.
Checkout on the tag"SMOKE_TESTS" is done inside the yml file invoked in interop-test repo .
Latest job was triggered to test that checkout is done successfully on the tag
.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?
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.
changed to master now
.github/workflows/ci.yml
Outdated
@@ -128,7 +128,7 @@ jobs: | |||
|
|||
nwaku-nwaku-interop-tests: | |||
needs: build-docker-image | |||
uses: waku-org/waku-interop-tests/.github/workflows/nim_waku_PR.yml@SMOKE_TESTS | |||
uses: waku-org/waku-interop-tests/.github/workflows/nim_waku_PR.yml@smoke_tests_review |
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.
I guess it should be 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.
tag name is added in waku_interop_tests repo at file test_PR_image.yml
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.
Wonderful! Thanks for much for the patience! 🙌 !
Description
This PR contains adding new job nwaku-nwaku-interop-tests .
The job fetches yml file nim_waku_PR.yml at tag SMOKE_TEST_0.0.1 to run set of tests "smoke tests "
from waku-test-repo
Changes