Skip to content

Commit

Permalink
Update build.gradle to remove non-mac build steps
Browse files Browse the repository at this point in the history
  • Loading branch information
acrantel authored Dec 28, 2023
1 parent 6b14fa7 commit c936883
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -161,21 +161,21 @@ task prodClient {
}
}

task releaseClientWin(type: Zip, dependsOn: ['prodClient']) {
from fileTree('client/dist/win-unpacked')
}
// task releaseClientWin(type: Zip, dependsOn: ['prodClient']) {
// from fileTree('client/dist/win-unpacked')
// }

task releaseClientMac(type: Zip, dependsOn: ['prodClient']) {
from fileTree('client/dist/mac')
}

task releaseClientLinux(type: Zip, dependsOn: ['prodClient']) {
from fileTree('client/dist/linux-unpacked')
}
// task releaseClientLinux(type: Zip, dependsOn: ['prodClient']) {
// from fileTree('client/dist/linux-unpacked')
// }

task releaseClientWin32(type: Zip, dependsOn: ['prodClient']) {
from fileTree('client/dist/win-ia32-unpacked')
}
// task releaseClientWin32(type: Zip, dependsOn: ['prodClient']) {
// from fileTree('client/dist/win-ia32-unpacked')
// }



Expand All @@ -197,13 +197,13 @@ publishing {
}
}

clientWin(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode24-client-win'
version project.findProperty('release_version') ?: 'NONSENSE'
// clientWin(MavenPublication) {
// groupId 'org.battlecode'
// artifactId 'battlecode24-client-win'
// version project.findProperty('release_version') ?: 'NONSENSE'

artifact releaseClientWin
}
// artifact releaseClientWin
// }

clientMac(MavenPublication) {
groupId 'org.battlecode'
Expand All @@ -213,20 +213,20 @@ publishing {
artifact releaseClientMac
}

clientLinux(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode24-client-linux'
version project.findProperty('release_version') ?: 'NONSENSE'
// clientLinux(MavenPublication) {
// groupId 'org.battlecode'
// artifactId 'battlecode24-client-linux'
// version project.findProperty('release_version') ?: 'NONSENSE'

artifact releaseClientLinux
}
// artifact releaseClientLinux
// }

clientWin32(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode24-client-win-32'
version project.findProperty('release_version') ?: 'NONSENSE'
// clientWin32(MavenPublication) {
// groupId 'org.battlecode'
// artifactId 'battlecode24-client-win-32'
// version project.findProperty('release_version') ?: 'NONSENSE'

artifact releaseClientWin32
}
// artifact releaseClientWin32
// }
}
}

0 comments on commit c936883

Please sign in to comment.