Skip to content
This repository was archived by the owner on Feb 20, 2025. It is now read-only.
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: wooga/atlas-unity
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b3f89ba5efccf8d6ba4d258804322d7e984d1d47
Choose a base ref
..
head repository: wooga/atlas-unity
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 65fdc33d8b029f06562714d906b8c587f3d1c9a2
Choose a head ref
Showing with 5 additions and 3 deletions.
  1. +4 −2 Jenkinsfile
  2. +1 −1 build.gradle
6 changes: 4 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -18,15 +18,17 @@

withCredentials([usernameColonPassword(credentialsId: 'artifactory_publish', variable: 'artifactory_publish'),
usernameColonPassword(credentialsId: 'artifactory_deploy', variable: 'artifactory_deploy'),
string(credentialsId: 'atlas_unity_coveralls_token', variable: 'coveralls_token')]) {
string(credentialsId: 'atlas_unity_coveralls_token', variable: 'coveralls_token'),
string(credentialsId: 'atlas_plugins_sonar_token', variable: 'sonar_token')]) {

def testEnvironment = [
"artifactoryCredentials=${artifactory_publish}",
"nugetkey=${artifactory_deploy}"
]

buildGradlePlugin plaforms: ['osx','windows','linux'],
buildGradlePlugin platforms: ['macos','windows','linux'],
coverallsToken: coveralls_token,
sonarToken: sonar_token,
testEnvironment: testEnvironment,
labels: 'primary'
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
*/

plugins {
id 'net.wooga.plugins' version '2.1.1'
id 'net.wooga.plugins' version '2.2.0'
}

group 'net.wooga.gradle'