Skip to content

Commit

Permalink
Use ubicloud-standard-16 to run CI builds (#6065)
Browse files Browse the repository at this point in the history
To get more benefits from parallelism.


YAML runner tag | vCPU | Memory
-- | -- | --
ubicloud-standard-16 | 16 | 64GB
  • Loading branch information
ikhoon authored Jan 14, 2025
1 parent 68ba43d commit bbb0571
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/actions_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,25 +32,25 @@ jobs:
strategy:
fail-fast: false
matrix:
on: [ ubicloud-standard-8, macos-latest, windows-latest ]
on: [ ubicloud-standard-16, macos-latest, windows-latest ]
java: [ 21 ]
include:
- java: 8
on: ubicloud-standard-8
on: ubicloud-standard-16
- java: 11
on: ubicloud-standard-8
on: ubicloud-standard-16
- java: 17
on: ubicloud-standard-8
on: ubicloud-standard-16
leak: true
- java: 17
on: ubicloud-standard-8
on: ubicloud-standard-16
min-java: 11
- java: 17
on: ubicloud-standard-8
on: ubicloud-standard-16
min-java: 17
coverage: true
- java: 21
on: ubicloud-standard-8
on: ubicloud-standard-16
snapshot: true
# blockhound makes the build run about 10 minutes slower
blockhound: true
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:

- name: Run the linters
run: |
./gradlew --no-daemon --stacktrace --max-workers=8 --parallel lint
./gradlew --no-daemon --stacktrace --max-workers=4 --parallel lint
site:
if: github.repository == 'line/armeria'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
publish:
name: Publish final artifacts
if: github.repository == 'line/armeria'
runs-on: ubicloud-standard-8
runs-on: ubicloud-standard-16
steps:
- uses: actions/checkout@v4

Expand All @@ -29,7 +29,7 @@ jobs:

- name: Build with Gradle
run: |
./gradlew --no-daemon --stacktrace --max-workers=8 --parallel -PflakyTests=false \
./gradlew --no-daemon --stacktrace --max-workers=12 --parallel -PflakyTests=false \
-Pretry=true -PfailOnPassedAfterRetry=false \
build
shell: bash
Expand Down

0 comments on commit bbb0571

Please sign in to comment.