Merge the formplayer branch into master—so we can delete it! #1171
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CommCare Core Build | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| - 'formplayer' | |
| pull_request: | |
| branches: | |
| - 'master' | |
| - 'formplayer' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| JAVA_VERSION: '17' | |
| JOB_GRADLE_VERSION: 8.1 | |
| FORMPLAYER_GRADLE_VERSION: 8.1 | |
| FORMPLAYER_JAVA_VERSION: '17' | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set environment for Formplayer | |
| if: ${{ github.ref_name == 'formplayer' || github.base_ref == 'formplayer' }} | |
| run: | | |
| echo "JOB_GRADLE_VERSION=${{ env.FORMPLAYER_GRADLE_VERSION }}" >> "$GITHUB_ENV" | |
| echo "JAVA_VERSION=${{ env.FORMPLAYER_JAVA_VERSION }}" >> "$GITHUB_ENV" | |
| - name: Set up Java | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: ${{ env.JAVA_VERSION }} | |
| distribution: 'adopt' | |
| - name: Build with Gradle | |
| uses: gradle/gradle-build-action@v2 | |
| with: | |
| gradle-version: ${{ env.JOB_GRADLE_VERSION }} | |
| arguments: build |