|
| 1 | +name: Handle Push |
| 2 | +on: |
| 3 | + push: |
| 4 | + branches: |
| 5 | + - '**' # respond to a push to any branch |
| 6 | + tags: |
| 7 | + - '[0-9]+.[0-9]+.[0-9]+' # respond to any release tags with semantic versioning |
| 8 | + |
| 9 | +env: |
| 10 | + GRADLE_CACHE_PATH: | |
| 11 | + ~/.gradle/caches |
| 12 | + ~/.gradle/wrapper |
| 13 | +
|
| 14 | +jobs: |
| 15 | + # Run the tests on any branch or tag push |
| 16 | + run-tests: |
| 17 | + strategy: |
| 18 | + matrix: |
| 19 | + include: |
| 20 | + - project: Library |
| 21 | + gradle-arguments: testReleaseUnitTest |
| 22 | + base-folder: Armadillo |
| 23 | + test-report-folder: testReleaseUnitTest |
| 24 | + - project: Test App |
| 25 | + gradle-arguments: :TestApp:testArmlocalReleaseUnitTest |
| 26 | + base-folder: TestApp |
| 27 | + test-report-folder: testArmlocalReleaseUnitTest |
| 28 | + |
| 29 | + name: Run ${{ matrix.project }} Tests |
| 30 | + runs-on: ubuntu-latest |
| 31 | + steps: |
| 32 | + # Clone the repo |
| 33 | + - name: Clone Repo |
| 34 | + uses: actions/checkout@v2 |
| 35 | + |
| 36 | + # Cache the gradle build dependencies for faster builds |
| 37 | + - name: Cache Gradle Dependencies |
| 38 | + uses: actions/cache@v2 |
| 39 | + with: |
| 40 | + path: ${{ env.GRADLE_CACHE_PATH }} |
| 41 | + key: ${{ runner.os }}-${{ hashFiles('.gradle-cache-buster') }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', '**/gradle.properties') }} |
| 42 | + restore-keys: ${{ runner.os }}-${{ hashFiles('.gradle-cache-buster') }}-gradle- |
| 43 | + |
| 44 | + # Test using gradle |
| 45 | + - name: Run ${{ matrix.project }} Tests |
| 46 | + run: ./gradlew ${{ matrix.gradle-arguments }} --warning-mode all |
| 47 | + |
| 48 | + # Upload the html test report as a build artifact for easier debugging |
| 49 | + - name: Upload Test Report |
| 50 | + if: ${{ always() }} |
| 51 | + uses: actions/upload-artifact@v2 |
| 52 | + with: |
| 53 | + name: ${{ matrix.test-group }} Test Reports |
| 54 | + path: ${{ matrix.base-folder }}/build/reports/tests/${{ matrix.test-report-folder }}/* |
| 55 | + |
| 56 | + # Upload XML logs as build artifacts (accessible from the Summary page of the run) |
| 57 | + - name: Upload JUnit Logs |
| 58 | + if: ${{ always() }} |
| 59 | + uses: actions/upload-artifact@v2 |
| 60 | + with: |
| 61 | + name: ${{ matrix.test-group }} Testing Logs |
| 62 | + path: "${{ matrix.base-folder }}/build/test-results/test*UnitTest/TEST-*.xml" |
| 63 | + |
| 64 | + # If the workflow was started on the main branch then publish the library and test app. If started on a release branch publish only the library. |
| 65 | + publish-artifact-to-github-packages-or-s3: |
| 66 | + name: Publish ${{ matrix.project }} Release |
| 67 | + runs-on: ubuntu-latest |
| 68 | + needs: run-tests |
| 69 | + strategy: |
| 70 | + matrix: |
| 71 | + include: |
| 72 | + - project: Library |
| 73 | + gradle-arguments: :Armadillo:assembleRelease |
| 74 | + artifact-name: Armadillo.aar |
| 75 | + artifact-path: Armadillo/build/outputs/aar/Armadillo-release.aar |
| 76 | + retention-days: 400 |
| 77 | + - project: Test App |
| 78 | + gradle-arguments: :TestApp:assembleArmLocalRelease |
| 79 | + artifact-name: TestApp.apk |
| 80 | + artifact-path: TestApp/build/outputs/apk/armlocal/release/TestApp-armlocal-release.apk |
| 81 | + retention-days: 7 |
| 82 | + steps: |
| 83 | + # Retrieve the repo |
| 84 | + - name: Clone Repo |
| 85 | + uses: actions/checkout@v2 |
| 86 | + |
| 87 | + # Cache the gradle build dependencies for faster builds |
| 88 | + - name: Cache Gradle Dependencies |
| 89 | + uses: actions/cache@v2 |
| 90 | + with: |
| 91 | + path: ${{ env.GRADLE_CACHE_PATH }} |
| 92 | + key: ${{ runner.os }}-${{ hashFiles('.gradle-cache-buster') }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', '**/gradle.properties') }} |
| 93 | + restore-keys: ${{ runner.os }}-${{ hashFiles('.gradle-cache-buster') }}-gradle- |
| 94 | + |
| 95 | + # Build using gradle |
| 96 | + - name: Build ${{ matrix.project }} Release |
| 97 | + run: ./gradlew ${{ matrix.gradle-arguments }} |
| 98 | + |
| 99 | + # Push the Library to Github packages |
| 100 | + - name: Publish Release |
| 101 | + if: matrix.project == 'Library' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')) |
| 102 | + env: |
| 103 | + GITHUB_USERNAME: ${{ github.actor }} |
| 104 | + GITHUB_PASSWORD: ${{ github.token }} |
| 105 | + run: | |
| 106 | + ./gradlew publishReleaseAarPublicationToGitHubPackagesRepository |
| 107 | +
|
| 108 | + # Upload the AAR file as a build artifact (accessible from the Summary page of the run) |
| 109 | + - name: Upload AAR file |
| 110 | + uses: actions/upload-artifact@v2 |
| 111 | + with: |
| 112 | + name: ${{ matrix.artifact-name }} |
| 113 | + path: ${{ matrix.artifact-path }} |
| 114 | + retention-days: ${{ matrix.retention-days }} |
0 commit comments