2020-08-11 09:01:48 -07:00
|
|
|
name: Build & Test
|
2020-07-14 08:41:00 -07:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2020-08-11 09:01:48 -07:00
|
|
|
runs-on: ubuntu-latest
|
2020-07-14 08:41:00 -07:00
|
|
|
steps:
|
2023-11-21 11:25:09 -08:00
|
|
|
- uses: actions/checkout@v4
|
2020-07-25 09:49:54 -07:00
|
|
|
|
2023-09-24 17:20:06 -07:00
|
|
|
- name: Setup node 20
|
2023-11-21 11:25:54 -08:00
|
|
|
uses: actions/setup-node@v4
|
2020-07-14 08:41:00 -07:00
|
|
|
with:
|
2023-09-24 17:20:06 -07:00
|
|
|
node-version: 20
|
2020-07-25 09:49:54 -07:00
|
|
|
|
2020-07-14 08:41:00 -07:00
|
|
|
- run: npm ci
|
2020-07-25 09:49:54 -07:00
|
|
|
|
2020-07-14 08:41:00 -07:00
|
|
|
- run: npm run build
|
2020-07-25 09:49:54 -07:00
|
|
|
|
2022-08-03 05:27:53 -07:00
|
|
|
- name: Check if dist/index.js needs to be rebuilt
|
2022-08-03 05:56:56 -07:00
|
|
|
run: diff <(git status dist/index.js --short) <(echo -n "")
|
2022-08-03 05:27:53 -07:00
|
|
|
|
2020-08-11 10:44:45 -07:00
|
|
|
format-check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-21 11:25:09 -08:00
|
|
|
- uses: actions/checkout@v4
|
2020-08-11 10:44:45 -07:00
|
|
|
|
2023-09-24 17:20:06 -07:00
|
|
|
- name: Setup node 20
|
2023-11-21 11:25:54 -08:00
|
|
|
uses: actions/setup-node@v4
|
2020-08-11 10:44:45 -07:00
|
|
|
with:
|
2023-09-24 17:20:06 -07:00
|
|
|
node-version: 20
|
2020-08-11 10:44:45 -07:00
|
|
|
|
|
|
|
- run: npm ci
|
|
|
|
|
2020-07-14 08:41:00 -07:00
|
|
|
- run: npm run format-check
|
2020-07-25 09:49:54 -07:00
|
|
|
|
2020-08-11 10:44:45 -07:00
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-21 11:25:09 -08:00
|
|
|
- uses: actions/checkout@v4
|
2020-08-11 10:44:45 -07:00
|
|
|
|
2023-09-24 17:20:06 -07:00
|
|
|
- name: Setup node 20
|
2023-11-21 11:25:54 -08:00
|
|
|
uses: actions/setup-node@v4
|
2020-08-11 10:44:45 -07:00
|
|
|
with:
|
2023-09-24 17:20:06 -07:00
|
|
|
node-version: 20
|
2020-08-11 10:44:45 -07:00
|
|
|
|
|
|
|
- run: npm ci
|
|
|
|
|
2020-07-14 08:41:00 -07:00
|
|
|
- run: npm test
|
2020-08-11 10:44:45 -07:00
|
|
|
|
2021-02-02 15:33:00 -08:00
|
|
|
runSdkManager:
|
|
|
|
runs-on: ${{ matrix.os }}
|
2023-11-21 12:08:54 -08:00
|
|
|
name: ${{ matrix.os }} - ${{ matrix.cmdline-tools-version }}
|
2021-02-02 15:33:00 -08:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2024-06-18 00:18:53 -07:00
|
|
|
os:
|
|
|
|
- ubuntu-24.04
|
|
|
|
- ubuntu-22.04
|
|
|
|
- ubuntu-20.04
|
2024-08-09 13:20:30 -07:00
|
|
|
- macos-14
|
2024-06-18 00:18:53 -07:00
|
|
|
- macos-13
|
|
|
|
- macos-12
|
|
|
|
- windows-2022
|
|
|
|
- windows-2019
|
2023-11-21 11:32:42 -08:00
|
|
|
cmdline-tools-version:
|
2024-10-29 12:11:09 -07:00
|
|
|
- 12266719
|
|
|
|
- 11479570
|
|
|
|
- 11076708
|
2023-11-21 11:32:42 -08:00
|
|
|
- 10406996
|
|
|
|
- 9862592
|
|
|
|
- 9477386
|
|
|
|
- 9123335
|
|
|
|
- 8512546
|
2021-02-02 15:33:00 -08:00
|
|
|
steps:
|
2023-11-21 11:25:09 -08:00
|
|
|
- uses: actions/checkout@v4
|
2021-02-02 15:33:00 -08:00
|
|
|
|
2023-09-24 17:20:06 -07:00
|
|
|
- name: Setup node 20
|
2023-11-21 11:25:54 -08:00
|
|
|
uses: actions/setup-node@v4
|
2021-02-02 15:33:00 -08:00
|
|
|
with:
|
2023-09-24 17:20:06 -07:00
|
|
|
node-version: 20
|
2021-02-02 15:33:00 -08:00
|
|
|
|
2023-09-24 17:03:19 -07:00
|
|
|
- name: Set up JDK 17
|
2023-12-04 08:51:26 -08:00
|
|
|
uses: actions/setup-java@v4
|
2023-09-24 17:03:19 -07:00
|
|
|
with:
|
|
|
|
java-version: 17
|
2023-09-24 17:53:00 -07:00
|
|
|
distribution: 'temurin'
|
2023-09-24 17:03:19 -07:00
|
|
|
|
2021-02-02 15:33:00 -08:00
|
|
|
- run: npm ci
|
|
|
|
- run: npm run build
|
|
|
|
|
2023-11-25 07:25:16 -08:00
|
|
|
- name: Run setup-android
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cmdline-tools-version: ${{ matrix.cmdline-tools-version }}
|
2023-11-25 08:08:42 -08:00
|
|
|
log-accepted-android-sdk-licenses: 'false'
|
2021-02-02 15:33:00 -08:00
|
|
|
|
2023-11-25 07:21:46 -08:00
|
|
|
- run: sdkmanager --list_installed
|
|
|
|
|
2021-02-02 15:33:00 -08:00
|
|
|
- run: sdkmanager --list
|
|
|
|
|
2020-08-11 10:44:45 -07:00
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-21 11:25:09 -08:00
|
|
|
- uses: actions/checkout@v4
|
2020-08-11 10:44:45 -07:00
|
|
|
|
2023-09-24 17:20:06 -07:00
|
|
|
- name: Setup node 20
|
2023-11-21 11:25:54 -08:00
|
|
|
uses: actions/setup-node@v4
|
2020-08-11 10:44:45 -07:00
|
|
|
with:
|
2023-09-24 17:20:06 -07:00
|
|
|
node-version: 20
|
2020-08-11 10:44:45 -07:00
|
|
|
|
|
|
|
- run: npm ci
|
|
|
|
|
|
|
|
- run: npm run lint
|