Skip to content

Commit

Permalink
Modify existing premerge CI to runs-on temp-ci label (NVIDIA#507)
Browse files Browse the repository at this point in the history
Signed-off-by: Peixin Li <[email protected]>
  • Loading branch information
pxLi authored May 10, 2022
1 parent 1058e40 commit 7171087
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/premerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
unit-tests:
runs-on: self-hosted
runs-on: [self-hosted, temp-ci]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
Expand All @@ -21,7 +21,7 @@ jobs:
- run: PYTHONPATH=$(pwd) ./runtest.sh

integration-tests:
runs-on: self-hosted
runs-on: [self-hosted, temp-ci]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
Expand All @@ -35,7 +35,7 @@ jobs:
./run_integration_tests.sh
wheel-build:
runs-on: self-hosted
runs-on: [self-hosted, temp-ci]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
Expand Down

0 comments on commit 7171087

Please sign in to comment.