mirror of
https://github.com/android-actions/setup-android
synced 2024-11-22 05:29:34 -08:00
changeup CI
This commit is contained in:
parent
4de319a2e2
commit
ca48f596fe
2 changed files with 18 additions and 18 deletions
9
.github/workflows/build-test.yml
vendored
9
.github/workflows/build-test.yml
vendored
|
@ -13,17 +13,22 @@ on:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.operating-system }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Setup node 12
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 12.x
|
||||
|
||||
- run: npm ci
|
||||
|
||||
- run: npm run build
|
||||
|
||||
- run: npm run format-check
|
||||
|
||||
- run: npm test
|
||||
|
|
27
.github/workflows/run-test.yml
vendored
27
.github/workflows/run-test.yml
vendored
|
@ -13,35 +13,30 @@ on:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.operating-system }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
operating-system:
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- windows-latest
|
||||
- macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
path: setup-android
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
repository: westnordost/StreetComplete
|
||||
path: streetcomplete
|
||||
repository: daveol/SampleApplication
|
||||
|
||||
- name: Set up JDK 1.8
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: 1.8
|
||||
|
||||
- name: Setup Android SDK
|
||||
id: 'setup-android'
|
||||
uses: ./setup-android/
|
||||
- name: Run sdkmanager
|
||||
uses: ${{ github.repository }}@${{ github.ref }}
|
||||
|
||||
- name: Build SampleApplication
|
||||
if: runner.os != 'windows'
|
||||
run: |
|
||||
cd streetcomplete
|
||||
./gradlew build
|
||||
run: ./gradlew --no-daemon build
|
||||
|
||||
- name: Build streetcomplete (Windows)
|
||||
if: runner.os == 'windows'
|
||||
run: |
|
||||
cd streetcomplete
|
||||
.\gradlew.bat build
|
||||
run: .\gradlew.bat --no-daemon build
|
||||
|
|
Loading…
Reference in a new issue