User: kyle wood Date: 28 Mar 25 00:57 Revision: 5ca2d036e6ff2127f6e86343f874945781fb9c38 Summary: Increase Gradle daemon memory in actions TeamCity URL: https://ci.mcdev.io/viewModification.html?tab=vcsModificationFiles&modId=9922&personal=false Index: .github/workflows/publish.yml =================================================================== --- .github/workflows/publish.yml (revision 40b186d7b0dd665e90994a8bdf5e9423a7686be2) +++ .github/workflows/publish.yml (revision 5ca2d036e6ff2127f6e86343f874945781fb9c38) @@ -32,6 +32,10 @@ mkdir -p ~/.gradle/ echo "GRADLE_USER_HOME=$HOME/.gradle" >> "$GITHUB_ENV" echo "mcdev.deploy.token=${JETBRAINS_TOKEN}" > ~/.gradle/gradle.properties + - shell: bash + run: | + mkdir -p ~/.gradle/ + echo -e '\norg.gradle.jvmargs=-Xmx4G\n' >> ~/.gradle/gradle.properties - name: Publish plugin run: ./gradlew clean :publishPlugin --stacktrace - name: Get tag name Index: .github/workflows/test.yml =================================================================== --- .github/workflows/test.yml (revision 40b186d7b0dd665e90994a8bdf5e9423a7686be2) +++ .github/workflows/test.yml (revision 5ca2d036e6ff2127f6e86343f874945781fb9c38) @@ -23,14 +23,18 @@ with: distribution: 'temurin' java-version: 17 - - uses: actions-ecosystem/action-regex-match@v2 + - uses: actions-ecosystem/action-regex-match@d50fd2e7a37d0e617aea3d7ada663bd56862b9cc id: branch-match with: text: ${{ github.ref }} - regex: '^refs/heads/\d{4}\.\d$' + regex: '^refs\/heads\/\d{4}\.\d$' - name: Setup Gradle uses: gradle/actions/setup-gradle@v4 with: - cache-read-only: ${{ github.ref != 'refs/heads/dev' && steps.branch-match.outputs.match != '' }} + cache-read-only: ${{ github.ref != 'refs/heads/dev' && steps.branch-match.outputs.match == '' }} + - shell: bash + run: | + mkdir -p ~/.gradle/ + echo -e '\norg.gradle.jvmargs=-Xmx4G\n' >> ~/.gradle/gradle.properties - name: Build run: ./gradlew build --stacktrace