diff --git a/.github/workflows/ansible_update_server.yml b/.github/workflows/ansible_update_server.yml index 50a5f2917..0d4102f67 100644 --- a/.github/workflows/ansible_update_server.yml +++ b/.github/workflows/ansible_update_server.yml @@ -27,7 +27,7 @@ jobs: uses: gradle/actions/setup-gradle@v3 - name: 🐘 Gradle Build - run: CI=true ./gradlew :ansible:build + run: CI=true ./gradlew :ansible:build --parallel --no-daemon - name: Inject secrets run: 'echo "$SECRETS_YML" > variables/secrets.yml' diff --git a/.github/workflows/ansible_update_server_minecraft.yml b/.github/workflows/ansible_update_server_minecraft.yml index 847e90433..26fd81b30 100644 --- a/.github/workflows/ansible_update_server_minecraft.yml +++ b/.github/workflows/ansible_update_server_minecraft.yml @@ -21,12 +21,13 @@ jobs: with: java-version: '17' distribution: 'temurin' + cache: 'gradle' - name: 🐘 Setup Gradle uses: gradle/actions/setup-gradle@v3 - name: 🐘 Gradle Build - run: CI=true ./gradlew :ansible:build + run: CI=true ./gradlew :ansible:build --parallel --no-daemon - name: Inject secrets run: 'echo "$SECRETS_YML" > variables/secrets.yml'