Skip to content

Commit

Permalink
chore: rollback to buildjet runner
Browse files Browse the repository at this point in the history
  • Loading branch information
yamilmedina committed Nov 21, 2023
1 parent 44210a0 commit 1e14fbe
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-app.yml
Expand Up @@ -9,15 +9,15 @@ on:

jobs:
build-app:
runs-on: macos-latest
runs-on: buildjet-8vcpu-ubuntu-2204
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive # Needed in order to fetch Kalium sources for building
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: buildjet/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
Expand All @@ -43,4 +43,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: wire-android-${{inputs.flavour}}-pr-${{ github.event.pull_request.number }}.apk
path: ./wire-android-${{inputs.flavour}}-pr-${{ github.event.pull_request.number }}.apk
path: ./wire-android-${{inputs.flavour}}-pr-${{ github.event.pull_request.number }}.apk
6 changes: 3 additions & 3 deletions .github/workflows/codestyle.yml
Expand Up @@ -7,15 +7,15 @@ permissions:

jobs:
static-code-analysis:
runs-on: ubuntu-latest
runs-on: buildjet-2vcpu-ubuntu-2204
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive # Needed in order to fetch Kalium sources for building
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: buildjet/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
Expand All @@ -30,4 +30,4 @@ jobs:
# Restoring these files from a GitHub Actions cache might cause problems for future builds.
run: |
rm -f ~/.gradle/caches/modules-2/modules-2.lock
rm -f ~/.gradle/caches/modules-2/gc.properties
rm -f ~/.gradle/caches/modules-2/gc.properties
6 changes: 3 additions & 3 deletions .github/workflows/gradle-run-ui-tests.yml
Expand Up @@ -12,7 +12,7 @@ concurrency:

jobs:
ui-tests:
runs-on: macos-latest
runs-on: buildjet-8vcpu-ubuntu-2204
strategy:
matrix:
api-level: [29]
Expand All @@ -25,7 +25,7 @@ jobs:
fetch-depth: 0

- name: Set up JDK 17
uses: actions/setup-java@v3
uses: buildjet/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
Expand Down Expand Up @@ -69,4 +69,4 @@ jobs:
# Restoring these files from a GitHub Actions cache might cause problems for future builds.
run: |
rm -f ~/.gradle/caches/modules-2/modules-2.lock
rm -f ~/.gradle/caches/modules-2/gc.properties
rm -f ~/.gradle/caches/modules-2/gc.properties
6 changes: 3 additions & 3 deletions .github/workflows/gradle-run-unit-tests.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: ./.github/workflows/codestyle.yml
unit-tests:
needs: [detekt]
runs-on: ubuntu-latest
runs-on: buildjet-8vcpu-ubuntu-2204

steps:
- name: Checkout
Expand All @@ -25,7 +25,7 @@ jobs:
fetch-depth: 0

- name: Set up JDK 17
uses: actions/setup-java@v3
uses: buildjet/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
Expand Down Expand Up @@ -107,4 +107,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: Event File
path: ${{ github.event_path }}
path: ${{ github.event_path }}

0 comments on commit 1e14fbe

Please sign in to comment.