Skip to content

Commit

Permalink
Update nightly sweeps github action
Browse files Browse the repository at this point in the history
Workflow build-and-test.yml is now obsolete.
Using build-image.yml, build.yml and test.yml.
  • Loading branch information
vbrkicTT committed Feb 5, 2025
1 parent 9b18def commit 58edbe5
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/on-nightly-sweeps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,22 @@ on:

jobs:
docker-build:
uses: ./.github/workflows/build-and-test.yml
uses: ./.github/workflows/build-image.yml
secrets: inherit
build:
needs: docker-build
uses: ./.github/workflows/build.yml
secrets: inherit
with:
docker-image: ${{ needs.docker-build.outputs.docker-image }}
test:
needs:
- docker-build
- build
uses: ./.github/workflows/test.yml
secrets: inherit
with:
test_mark: 'nightly_sweeps'
test_group_cnt: 4
test_group_ids: '[1,2,3,4]'
docker-image: ${{ needs.docker-build.outputs.docker-image }}

0 comments on commit 58edbe5

Please sign in to comment.