Port GpxWriter to Kotlin and use internal XML Escaper. Write first Gp… #275
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: Build on ubuntu | |
| on: | |
| push: | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| - name: Install dependencies | |
| run: sudo apt-get -y install libglib2.0-dev | |
| - name: Build with Gradle | |
| run: ./gradlew build | |
| - name: Collect files for distribution | |
| if: success() || failure() | |
| run: ci/collect-artifacts.sh | |
| - name: Upload artifacts (gtk) | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: aat-gtk | |
| path: dist/gtk | |
| if-no-files-found: error | |
| - name: Upload artifacts (android) | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: aat-android | |
| path: dist/android | |
| if-no-files-found: error | |
| - name: Upload artifacts (reports) | |
| uses: actions/upload-artifact@v4 | |
| if: success() || failure() | |
| with: | |
| name: reports | |
| path: dist/reports | |
| if-no-files-found: error | |
| - name: Publish Test Report | |
| uses: mikepenz/action-junit-report@v5 | |
| if: success() || failure() | |
| with: | |
| report_paths: '**/build/test-results/test/TEST-*.xml' |