Skip to content

Commit

Permalink
Removed --no-daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
Edivad99 committed Aug 24, 2023
1 parent edd5845 commit 1650f4d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on:

jobs:
build:
if: "!contains(github.event.head_commit.message, '[ci skip]')"
name: Build
runs-on: ubuntu-latest
steps:
Expand All @@ -25,10 +24,10 @@ jobs:
cache: 'gradle'

- name: Compile
run: ./gradlew build --no-daemon --max-workers 1
run: ./gradlew build --max-workers 1

- name: Test
run: ./gradlew runGameTestServer --no-daemon --max-workers 1
run: ./gradlew runGameTestServer --max-workers 1

- name: Upload Artifact
uses: actions/upload-artifact@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
cache: 'gradle'

- name: Compile
run: ./gradlew build --no-daemon --max-workers 1
run: ./gradlew build --max-workers 1

- name: Test
run: ./gradlew runGameTestServer --no-daemon --max-workers 1
run: ./gradlew runGameTestServer --max-workers 1

- name: Make Changelog
run: ./gradlew makeChangelog --no-daemon --max-workers 1
run: ./gradlew makeChangelog --max-workers 1

- name: Publish
run: ./gradlew publishMods --no-daemon --max-workers 1
run: ./gradlew publishMods --max-workers 1
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import static org.apache.commons.lang3.StringUtils.repeat
plugins {
id 'eclipse'
id 'idea'
id 'maven-publish'
id 'net.neoforged.gradle' version '[6.0.18,6.2)'
id 'org.parchmentmc.librarian.forgegradle' version '1.+'
id 'org.spongepowered.mixin' version '0.7.+'
Expand Down

0 comments on commit 1650f4d

Please sign in to comment.