From 10ee7da63ef81d7a47730e1eda5c4282f51fca79 Mon Sep 17 00:00:00 2001 From: micronaut-build <65172877+micronaut-build@users.noreply.github.com> Date: Tue, 6 Apr 2021 02:48:25 -0500 Subject: [PATCH] [mqtt] Update common files for branch master (#63) --- .github/workflows/graalvm.yml | 14 ++++++++++++++ .github/workflows/gradle.yml | 9 +++++++++ 2 files changed, 23 insertions(+) diff --git a/.github/workflows/graalvm.yml b/.github/workflows/graalvm.yml index d095f5fb..0d255bd5 100644 --- a/.github/workflows/graalvm.yml +++ b/.github/workflows/graalvm.yml @@ -1,3 +1,8 @@ +# WARNING: Do not edit this file directly. Instead, go to: +# +# https://github.com/micronaut-projects/micronaut-project-template/tree/master/.github/workflows +# +# and edit them there. Note that it will be sync'ed to all the Micronaut repos name: GraalVM CE CI on: push: @@ -16,6 +21,13 @@ jobs: matrix: graalvm: ['21.0.0.2.java8', '21.0.0.2.java11'] steps: + # https://github.com/actions/virtual-environments/issues/709 + - name: Free disk space + run: | + sudo rm -rf "/usr/local/share/boost" + sudo rm -rf "$AGENT_TOOLSDIRECTORY" + sudo apt-get clean + df -h - uses: actions/checkout@v2 - uses: actions/cache@v2.1.4 with: @@ -37,3 +49,5 @@ jobs: else ./gradlew check --continue --no-daemon fi + env: + TESTCONTAINERS_RYUK_DISABLED: true \ No newline at end of file diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 3643e5c0..1feb51e0 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -21,6 +21,13 @@ jobs: matrix: java: ['8', '11', '15'] steps: + # https://github.com/actions/virtual-environments/issues/709 + - name: Free disk space + run: | + sudo rm -rf "/usr/local/share/boost" + sudo rm -rf "$AGENT_TOOLSDIRECTORY" + sudo apt-get clean + df -h - uses: actions/checkout@v2 - uses: actions/cache@v2.1.4 with: @@ -37,6 +44,8 @@ jobs: [ -f ./setup.sh ] && ./setup.sh || true - name: Build with Gradle run: ./gradlew dependencyUpdates check --no-daemon --parallel --continue + env: + TESTCONTAINERS_RYUK_DISABLED: true - name: Publish to Sonatype Snapshots if: success() && github.event_name == 'push' && matrix.java == '8' env: