Skip to content

Commit

Permalink
Change name of runner to test
Browse files Browse the repository at this point in the history
  • Loading branch information
yhaliaw committed Jun 27, 2023
1 parent daa8f9b commit 89c9253
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ on:

jobs:
hello-world:
runs-on: [self-hosted, test-runner]
runs-on: [self-hosted, manual-runner]
steps:
- run: echo "hello world"
4 changes: 2 additions & 2 deletions .github/workflows/manual_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
e2e-test:
name: end to end test
runs-on: [self-hosted, linux, x64, runner]
runs-on: [self-hosted, linux, x64, manual-runner]
steps:
- name: Echo hello world
run: echo "hello world"
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
# Test the dependencies in one job to avoid using too many runners at once.
name: dependency test
needs: e2e-test
runs-on: [self-hosted, linux, x64, runner]
runs-on: [self-hosted, linux, x64, manual-runner]
steps:
- name: Docker version
run: docker version
Expand Down

0 comments on commit 89c9253

Please sign in to comment.