Adding support for compact offers #2913
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: Check | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| - '**.adoc' | |
| - '**/.gitignore' | |
| - '.github/**' | |
| - '!.github/workflows/test.yml' | |
| push: | |
| branches: | |
| - 'master' | |
| - '!snapshot/*' | |
| paths-ignore: | |
| - '**.md' | |
| - '**.adoc' | |
| - '**/.gitignore' | |
| - '.github/**' | |
| - '!.github/workflows/test.yml' | |
| jobs: | |
| upload: | |
| name: Check | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest, macOS-latest ] | |
| steps: | |
| # 1 - checkout repositories | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: 'true' | |
| # 2 - setup cache and tools | |
| - name: Cached Konan | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.konan | |
| key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} | |
| restore-keys: ${{ runner.os }}-konan- | |
| - name: Cached Gradle | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.gradle | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} | |
| restore-keys: ${{ runner.os }}-gradle- | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 21 | |
| distribution: 'adopt' | |
| # 4 - tests | |
| - name: Check with integration | |
| if: matrix.os == 'ubuntu-latest' | |
| run: ./gradlew build -PintegrationTests=include | |
| - name: Check without integration | |
| if: matrix.os == 'macOS-latest' | |
| run: ./gradlew build | |
| # Uncomment the lines below to store test results for debugging failed tests (useful for iOS) | |
| # - name: Store test results | |
| # if: always() | |
| # uses: actions/upload-artifact@v3 | |
| # with: | |
| # name: test results | |
| # path: build/reports | |
| # retention-days: 1 |