diff --git a/.github/workflows/complete.yml b/.github/workflows/complete.yml index 3f607fbcfb..73f603de6b 100644 --- a/.github/workflows/complete.yml +++ b/.github/workflows/complete.yml @@ -102,4 +102,16 @@ jobs: java-package: jdk architecture: x64 - name: Run integration tests - run: make test-java-integration \ No newline at end of file + run: make test-java-integration + + load-test: + runs-on: [self-hosted, load] + needs: build-push-docker-images + steps: + - uses: actions/checkout@v2 + - name: Run load test + run: make test-load + - uses: actions/upload-artifact@v2 + with: + name: load-test-results + path: load-test-output/ \ No newline at end of file diff --git a/.github/workflows/load_test.yml b/.github/workflows/load_test.yml deleted file mode 100644 index 5a95c5d1d5..0000000000 --- a/.github/workflows/load_test.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: load test - -on: [push, pull_request] - -jobs: - load-test: - runs-on: [self-hosted, load] - name: load-test - steps: - - uses: actions/checkout@v2 - - name: Run load test - run: make test-load - - uses: actions/upload-artifact@v2 - with: - name: load-test-results - path: load-test-output/ \ No newline at end of file