mirror of
https://github.com/jlengrand/atrium.git
synced 2026-03-10 08:01:19 +00:00
71 lines
2.8 KiB
YAML
71 lines
2.8 KiB
YAML
name: Windows
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
env:
|
|
android-version: 26
|
|
runs-on: windows-latest
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
java_version: [9, 10, 11, 12, 13, 14]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: "Set up JDK ${{ matrix.java_version }}"
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: ${{ matrix.java_version }}
|
|
|
|
- name: check generateLogic committed
|
|
run: ./gradle/scripts/check-generateLogic-committed.sh
|
|
|
|
- name: buildNonDeprecatedJvm
|
|
run: ./gradlew buildNonDeprecatedJvm
|
|
|
|
- name: Cache android jar
|
|
id: android-cache
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: android-jar-cache
|
|
key: ${{ runner.os }}-android-version-${{ env.android-version }}
|
|
|
|
- name: download Android SDK's android.jar (or use cached file)
|
|
if: steps.android-cache.outputs.cache-hit != 'true'
|
|
run: |
|
|
md android-jar-cache
|
|
cd android-jar-cache
|
|
curl -o android.jar -L "https://github.com/Sable/android-platforms/blob/master/android-${{ env.android-version }}/android.jar?raw=true"
|
|
$file_sha256 = $(certutil -hashfile android.jar sha256)[1] -replace " ",""
|
|
$expected_sha256 = "cdc1846376a14b0370cc63454a129606b4a52cc50ada75ef0d4cf956b1ad2daa"
|
|
if ($file_sha256 -Ne $expected_sha256) {
|
|
echo "wrong sha256 for android.jar: $file_sha256";
|
|
echo " expected: $expected_sha256";
|
|
exit -1
|
|
}
|
|
|
|
- name: check Atrium's -android.jar can be dexed
|
|
run: ATRIUM_ANDROID_JAR="$PWD/android-jar-cache/android.jar" ./gradlew checkDexer
|
|
shell: bash
|
|
|
|
- name: composite build atrium-scala
|
|
run: ./gradlew build
|
|
working-directory: misc\tools\atrium-scala-test
|
|
|
|
- name: Upload windows build code coverage
|
|
uses: codecov/codecov-action@v1
|
|
env:
|
|
JAVA_VERSION: ${{ matrix.java_version }}
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
flags: current_windows
|
|
env_vars: JAVA_VERSION
|
|
# too many timeout errors, let's not fail at the moment
|
|
#fail_ci_if_error: true
|
|
|
|
- name: composite build atrium-samples
|
|
run: ./gradlew build
|
|
working-directory: misc\tools\atrium-samples-test
|