Skip to content

Commit

Permalink
Add branch name to jenkins conda env
Browse files Browse the repository at this point in the history
  • Loading branch information
patricktnast committed Dec 12, 2024
1 parent 9cbbec1 commit 98aa0a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
**0.1.2 - 12/12/24**

- Add branch name to jenkins conda env

**0.1.1 - 12/10/24**

- Implement pipeline choice sections
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def githubUsernameToSlackName(github_author) {
}

pipeline_name="easylink"
conda_env_name="${pipeline_name}-${BUILD_NUMBER}"
conda_env_name="${pipeline_name}-${BRANCH_NAME}-${BUILD_NUMBER}"
// using /tmp for things is MUCH faster but not shared between nodes.
shared_filesystem_path="/mnt/team/simulation_science/priv/engineering/tests"
conda_env_path="${shared_filesystem_path}/venv/${conda_env_name}"
Expand Down

0 comments on commit 98aa0a4

Please sign in to comment.