-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #165 from peaqnetwork/fix/1205782676034164_stuck-i…
…ssue stuck issue fix
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 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 |
---|---|---|
|
@@ -77,3 +77,30 @@ jobs: | |
sudo TAG=${{ steps.image-version.outputs.tag }} docker compose pull | ||
sudo TAG=${{ steps.image-version.outputs.tag }} docker compose down -v | ||
sudo TAG=${{ steps.image-version.outputs.tag }} docker compose up -d --build --remove-orphans | ||
test: | ||
name: Run Autotest | ||
runs-on: ubuntu-20.04 | ||
needs: deploy | ||
steps: | ||
- name: Wait for Block Generation | ||
uses: jakejarvis/wait-action@master | ||
with: | ||
time: '180s' | ||
- name: Run Test | ||
uses: convictional/[email protected] | ||
with: | ||
owner: peaqnetwork | ||
repo: peaq-network-qa | ||
github_token: ${{ secrets.TOKEN_FOR_AUTOTEST }} | ||
workflow_file_name: main.yml | ||
ref: test/1205859619866294_add-test-stage-in-peaqnode-deployment | ||
trigger_workflow: true | ||
wait_workflow: true | ||
# - name: Checkout code from specific branch | ||
# uses: actions/checkout@v2 | ||
# with: | ||
# repository: peaqnetwork/peaq-network-qa | ||
# token: ${{ secrets.TOKEN_FOR_AUTOTEST }} | ||
# ref: test/1205859619866294_add-test-stage-in-peaqnode-deployment | ||
# - name: Run AutoTest | ||
# uses: https://github.com/peaqnetwork/peaq-network-qa/blob/test/1205859619866294_add-test-stage-in-peaqnode-deployment/.github/workflows/RunTest.yml |