Skip to content

Commit

Permalink
Update actions (#406)
Browse files Browse the repository at this point in the history
* Update debug-build.yml

* Update gradle-wrapper-validation.yml

* Update gradle-wrapper-validation.yml

* Update native-tests.yml

* Update windows-build.yml
  • Loading branch information
topminipie authored Feb 10, 2024
1 parent fd2148f commit c7931a2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/debug-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ jobs:
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/playstore'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: actions/setup-java@v1

- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'

- run: ./gradlew test
- run: ./gradlew assembleDebug -PdoNotStrip
4 changes: 2 additions & 2 deletions .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ jobs:
name: "Validation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gradle/wrapper-validation-action@v1
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v2
3 changes: 2 additions & 1 deletion .github/workflows/native-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: 'recursive'

- name: Run native tests
working-directory: ./app/src/main/jni/tests
run: make run_tests
7 changes: 5 additions & 2 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@ jobs:
runs-on: windows-latest
if: github.ref != 'refs/heads/playstore'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: actions/setup-java@v1

- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'

- run: ./gradlew.bat assembleDebug

0 comments on commit c7931a2

Please sign in to comment.