-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
78d4aaf
commit 03a05ba
Showing
1 changed file
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
|
||
jobs: | ||
ktlint: | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: curl -sSLO https://github.com/pinterest/ktlint/releases/download/1.3.1/ktlint && chmod a+x ktlint | ||
|
@@ -18,7 +18,7 @@ jobs: | |
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-22.04 | ||
- ubuntu-24.04 | ||
- macos-12 | ||
- windows-2022 | ||
steps: | ||
|
@@ -66,7 +66,7 @@ jobs: | |
script: ./gradlew connectedCheck || { adb logcat -d; exit 1; } | ||
|
||
tox4j: | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
|
@@ -88,7 +88,10 @@ jobs: | |
echo "y" | $SDKMANAGER "ndk;21.4.7075529" | ||
- name: Install tox4j dependencies | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
run: sudo apt-get update && sudo apt install yasm | ||
run: | | ||
sudo apt-get update && sudo apt install yasm | ||
curl -s "https://get.sdkman.io" | bash | ||
sdk install sbt | ||
- name: Build tox4j | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
run: | | ||
|
@@ -107,7 +110,7 @@ jobs: | |
include-hidden-files: true | ||
|
||
bazel: | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
|
@@ -128,7 +131,7 @@ jobs: | |
- run: bazel test //... | ||
|
||
buildifier: | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install | ||
|
@@ -139,7 +142,7 @@ jobs: | |
run: ./buildifier --lint=warn --warnings=all -mode diff WORKSPACE $(find . -type f -name "BUILD.*") | ||
|
||
prettier: | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: npm install --global [email protected] | ||
|