-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,28 +29,30 @@ pipeline { | |
REACT_APP_SENTRY_DSN = "https://[email protected]/13" | ||
REACT_APP_ANALYTICS_ID_ACC = "e63312c0-0efe-4c4f-bba1-3ca1f05374a8" | ||
REACT_APP_ANALYTICS_ID_PROD = "f558164e-e388-49e0-864e-5f172552789c" | ||
|
||
TEAMS_HOST = credentials('TEAMS_HOST') | ||
WEBHOOK = credentials('WEBHOOK') | ||
} | ||
|
||
stages { | ||
|
||
// RELEASE NOTES | ||
|
||
stage('Release notes') { | ||
environment { | ||
TEAMS_HOST = credentials('TEAMS_HOST') | ||
WEBHOOK = credentials('WEBHOOK') | ||
} | ||
// when { | ||
// branch 'production-release-v*'; | ||
// } | ||
options { | ||
timeout(time: 5, unit: 'MINUTES') | ||
} | ||
steps { | ||
sh "docker build -f ./Dockerfile.release " + | ||
"--build-arg WEBHOOK=${WEBHOOK} " + | ||
"--build-arg TEAMS_HOST=${TEAMS_HOST} " + | ||
"--shm-size 1G " + | ||
"." | ||
sh 'echo "TEAMS_HOST is $TEAMS_HOST"' | ||
// sh "docker build -f ./Dockerfile.release " + | ||
// "--build-arg WEBHOOK=${WEBHOOK} " + | ||
// "--build-arg TEAMS_HOST=${TEAMS_HOST} " + | ||
// "--shm-size 1G " + | ||
// "." | ||
} | ||
} | ||
|
||
|