diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 13b24c2..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: Build -on: - push: - branches: - - master - pull_request: - branches: - - master -jobs: - build: - strategy: - fail-fast: false - matrix: - os: [ubuntu-20.04, windows-2019, macos-10.15, macos-11] - java: [8, 11] - gradle: [6.9.1] - experimental: [false] - runs-on: ${{ matrix.os }} - continue-on-error: ${{ matrix.experimental }} - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v1 - with: - java-version: ${{ matrix.java }} - - uses: actions/cache@v2 - id: cache-gradle - with: - path: | - ~/.gradle/caches - ~/.gradle/wrapper - key: gradle-${{ runner.os }}-${{ matrix.gradle }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} - restore-keys: | - gradle-${{ runner.os }}- - - uses: eskatos/gradle-command-action@v1 - with: - gradle-version: ${{ matrix.gradle }} - arguments: buildAll --parallel --stacktrace - - id: print-jvm-crash-logs - if: ${{ failure() }} - run: cat hs_err_pid*.log; cat **/hs_err_pid*.log; cat replay_pid*.log; cat **/replay_pid*.log; true - shell: bash