|
| 1 | +name: dryrun |
| 2 | + |
| 3 | +on: [push, pull_request] |
| 4 | + |
| 5 | +env: |
| 6 | + air-sdk-path: ${{ github.workspace }}\air_sdk |
| 7 | + air-sdk-version: "32.0" |
| 8 | + |
| 9 | +jobs: |
| 10 | + test-on-win: |
| 11 | + runs-on: [windows-latest] |
| 12 | + env: |
| 13 | + air-sdk-path: ${{ github.workspace }}\air_sdk |
| 14 | + air-sdk-version: "32.0" |
| 15 | + visual-studio-path: "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Enterprise" |
| 16 | + steps: |
| 17 | + - uses: actions/checkout@v2 |
| 18 | + - name: Set up JDK 1.8 |
| 19 | + uses: actions/setup-java@v1 |
| 20 | + with: |
| 21 | + java-version: 1.8 |
| 22 | + - name: Cache AIR SDK |
| 23 | + id: cache-air-sdk |
| 24 | + uses: actions/cache@v1 |
| 25 | + env: |
| 26 | + cache-name: cache-air-sdk |
| 27 | + with: |
| 28 | + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.air-sdk-version }} |
| 29 | + path: ${{ env.air-sdk-path }} |
| 30 | + restore-keys: | |
| 31 | + ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.air-sdk-version }} |
| 32 | + ${{ runner.os }}-build-${{ env.cache-name }} |
| 33 | + - name: Download AIR SDK |
| 34 | + if: steps.cache-air-sdk.outputs.cache-hit != 'true' |
| 35 | + run: | |
| 36 | + New-Item -Name ".\air_sdk" -ItemType "directory" -Force | Out-Null |
| 37 | + Invoke-WebRequest "http://airdownload.adobe.com/air/win/download/${env:air-sdk-version}/AIRSDK_Compiler.zip" -OutFile ".\AIRSDK_Compiler.zip" |
| 38 | + Expand-Archive -Path ".\AIRSDK_Compiler.zip" -DestinationPath "${{ env.air-sdk-path }}" | Out-Null |
| 39 | + echo AIR SDK expanded into "${{ env.air-sdk-path }}" |
| 40 | + - name: Copy keystore.p12 |
| 41 | + id: copy_keystore |
| 42 | + |
| 43 | + with: |
| 44 | + fileName: keystore.p12 |
| 45 | + encodedString: ${{ secrets.keystore }} |
| 46 | + - name: Build Script |
| 47 | + working-directory: build |
| 48 | + run: ant -debug -verbose -noinput "-Dair.sdk=${{ env.air-sdk-path }}" "-Dkeystore.file=${{ steps.copy_keystore.outputs.filePath }}" "-Dkeystore.password=${{ secrets.password }}" "-Dvisual.studio=${{ env.visual-studio-path }}" "-Dis.debug=false" "-Dbuild.number=${{ github.run_number }}" package.on.win |
| 49 | + - name: Unit Tests |
| 50 | + id: unit-tests |
| 51 | + working-directory: build |
| 52 | + run: ant -debug -verbose -noinput "-Dair.sdk=${{ env.air-sdk-path }}" "-Dkeystore.file=${{ steps.copy_keystore.outputs.filePath }}" "-Dkeystore.password=${{ secrets.password }}" "-Dvisual.studio=${{ env.visual-studio-path }}" "-Dis.debug=false" "-Dbuild.number=${{ github.run_number }}" test.on.win |
| 53 | + - name: Upload Tests Failure Detail |
| 54 | + if: failure() |
| 55 | + uses: actions/upload-artifact@v1 |
| 56 | + with: |
| 57 | + name: tests_failure_on_win.txt |
| 58 | + path: build/test/tests_failure.txt |
| 59 | + |
| 60 | + test-on-mac: |
| 61 | + runs-on: [macos-latest] |
| 62 | + steps: |
| 63 | + - uses: actions/checkout@v2 |
| 64 | + - name: Set up JDK 1.8 |
| 65 | + uses: actions/setup-java@v1 |
| 66 | + with: |
| 67 | + java-version: 1.8 |
| 68 | + - name: Cache AIR SDK |
| 69 | + id: cache-air-sdk |
| 70 | + uses: actions/cache@v1 |
| 71 | + env: |
| 72 | + cache-name: cache-air-sdk |
| 73 | + with: |
| 74 | + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.air-sdk-version }} |
| 75 | + path: ${{ env.air-sdk-path }} |
| 76 | + restore-keys: | |
| 77 | + ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.air-sdk-version }} |
| 78 | + ${{ runner.os }}-build-${{ env.cache-name }} |
| 79 | + - name: Download AIR SDK |
| 80 | + if: steps.cache-air-sdk.outputs.cache-hit != 'true' |
| 81 | + run: | |
| 82 | + mkdir -p ${{ env.air-sdk-path }} |
| 83 | + wget -O AIRSDK_Compiler.dmg https://airdownload.adobe.com/air/mac/download/${{ env.air-sdk-version }}/AIRSDK_Compiler.dmg |
| 84 | + hdiutil attach AIRSDK_Compiler.dmg -nobrowse |
| 85 | + cp -rf /Volumes/AIR\ SDK/* ${{ env.air-sdk-path }} |
| 86 | + - name: Install ANT |
| 87 | + run: brew install ant |
| 88 | + - name: Copy keystore.p12 |
| 89 | + id: copy_keystore |
| 90 | + |
| 91 | + with: |
| 92 | + fileName: keystore.p12 |
| 93 | + encodedString: ${{ secrets.keystore }} |
| 94 | + - name: Build Script |
| 95 | + working-directory: build |
| 96 | + run: ant -debug -verbose -noinput -Dair.sdk=${{ env.air-sdk-path }} -Dkeystore.file=${{ steps.copy_keystore.outputs.filePath }} -Dkeystore.password=${{ secrets.password }} -Dvisual.studio=${{ env.visual-studio-path }} -Dis.debug=false -Dbuild.number=${{ github.run_number }} package.on.mac |
| 97 | + - name: Unit Tests |
| 98 | + id: unit-tests |
| 99 | + working-directory: build |
| 100 | + run: ant -debug -verbose -noinput -Dair.sdk=${{ env.air-sdk-path }} -Dkeystore.file=${{ steps.copy_keystore.outputs.filePath }} -Dkeystore.password=${{ secrets.password }} -Dvisual.studio=${{ env.visual-studio-path }} -Dis.debug=false -Dbuild.number=${{ github.run_number }} test.on.mac |
| 101 | + - name: Upload Tests Failure Detail |
| 102 | + if: failure() |
| 103 | + uses: actions/upload-artifact@v1 |
| 104 | + with: |
| 105 | + name: tests_failure_on_mac.txt |
| 106 | + path: build/test/tests_failure.txt |
| 107 | + |
| 108 | + |
0 commit comments