Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtruong committed Sep 30, 2024
1 parent ebb2482 commit 1439043
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ on:

jobs:
determine_tests:
uses: ./github/workflows/which-tests-to-run.yaml
uses: ./github/workflows/which-tests-to-run.yaml

# ==== Query Service Jobs ====
build-container-query-service:
name: Build Legacy (Query Service) test container
timeout-minutes: 30
runs-on: [self-hosted, builder]
needs: check_paths
needs: determine_tests
if: ${{ needs.determine_tests.outputs.should_run_query_tests == 'true' }}

# runs-on: ubuntu-latest
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
test-query-service-matrix-check: # This job does nothing and is only used for the branch protection
needs:
- test-query-service
- check_paths
- determine_tests
if: ${{ needs.determine_tests.outputs.should_run_query_tests == 'true' }}

runs-on: ubuntu-latest
Expand All @@ -114,7 +114,7 @@ jobs:
weavejs-lint-compile:
name: WeaveJS Lint and Compile
runs-on: ubuntu-latest
needs: check_paths
needs: determine_tests
if: ${{ needs.determine_tests.outputs.should_run_query_tests == 'true' }}
# runs-on: [self-hosted, gke-runner]
steps:
Expand Down

0 comments on commit 1439043

Please sign in to comment.