Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Use buildjet instead of actuated #3182

Merged
merged 4 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: ./sbtx -v coverage "webapi/test" coverageAggregate
- name: WebApi Unit Test Report
uses: dorny/test-reporter@v1
if: ${{ env.IS_NOOP == 'false' && (success() || failure()) }}
if: ${{ env.IS_NOOP == 'false' && (success() || failure()) }}
with:
name: WebApi Unit Test Results
path: ./webapi/target/test-reports/TEST-*.xml
Expand All @@ -47,7 +47,7 @@ jobs:

integration-test:
name: Build and integration-test
runs-on: actuated-4cpu-20gb
runs-on: buildjet-4vcpu-ubuntu-2204
strategy:
matrix:
java: [ "21" ]
Expand All @@ -69,7 +69,7 @@ jobs:
run: make integration-test
- name: WebApi Integration Test Report
uses: dorny/test-reporter@v1
if: ${{ env.IS_NOOP == 'false' && (success() || failure()) }}
if: ${{ env.IS_NOOP == 'false' && (success() || failure()) }}
with:
name: WebApi Integration Test Results
path: ./integration/target/test-reports/TEST-*.xml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
create-client-test-data:
name: Create and upload client-test-data
runs-on: actuated-4cpu-20gb
runs-on: buildjet-4vcpu-ubuntu-2204
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
Expand Down