Set up CI with Azure Pipelines

[skip ci]
This commit is contained in:
Christopher McCarthy
2024-06-25 16:01:18 +00:00
parent 824729276e
commit 1033e696cd

View File

@@ -10,7 +10,7 @@ schedules:
displayName: "Weekday Schedule"
branches:
include:
- dev
- feature/2648_Automate-the-benchmarking-process
pool:
vmImage: ubuntu-latest
@@ -31,7 +31,7 @@ steps:
displayName: 'Set Version Variables'
- script: |
if [[ "$(Build.SourceBranch)" == "refs/heads/dev" ]]; then
if [[ "$(Build.SourceBranch)" == "refs/heads/feature/2648_Automate-the-benchmarking-process" ]]; then
DATE=$(date +%Y%m%d%H%M)
echo "${VERSION}+dev.${DATE}" > src/primaite/VERSION
fi