forked from micronaut-projects/micronaut-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mqtt] Update common files for branch master (micronaut-projects#63)
- Loading branch information
1 parent
8735485
commit 10ee7da
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/[email protected] | ||
with: | ||
|
@@ -37,3 +49,5 @@ jobs: | |
else | ||
./gradlew check --continue --no-daemon | ||
fi | ||
env: | ||
TESTCONTAINERS_RYUK_DISABLED: true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
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: | ||
|