Overview
| Comment: | Re-added this code accidentally removed in the last commit |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
3115f5352531249edb508cff456999ba |
| User & Date: | rkeene on 2017-10-26 20:07:09.890 |
| Other Links: | manifest | tags |
Context
|
2026-03-03
| ||
| 20:25 | Several improvements Leaf check-in: c4258e33c1 user: rkeene tags: trunk | |
|
2017-10-26
| ||
| 20:07 | Re-added this code accidentally removed in the last commit check-in: 3115f53525 user: rkeene tags: trunk | |
| 20:06 | Stubbed out more functionality check-in: 0c6ea4c365 user: rkeene tags: trunk | |
Changes
Modified bin/autobuild
from [6ad1dfc574]
to [b4c7a187a0].
| ︙ | ︙ | |||
102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
fi
eval "${config}"
if [ -f ~/.fossil-ci/"${projectName}"/config ]; then
. ~/.fossil-ci/"${projectName}"/config
fi
# 6. Perform any configured initialization
for cmd in "${initCommands[@]}"; do
eval "${cmd}" >/dev/null 2>/dev/null || :
done
# 7. For each branch, attempt to build
| > > > > > > > > | 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
fi
eval "${config}"
if [ -f ~/.fossil-ci/"${projectName}"/config ]; then
. ~/.fossil-ci/"${projectName}"/config
fi
## 5.d. Post-process config
### 5.d.i. Add builderID as a tag suffix if none was given
if [ -z "${tagSuffix}" ]; then
if [ -n "${builderID}" ]; then
tagSuffix="-${builderID}"
fi
fi
# 6. Perform any configured initialization
for cmd in "${initCommands[@]}"; do
eval "${cmd}" >/dev/null 2>/dev/null || :
done
# 7. For each branch, attempt to build
|
| ︙ | ︙ |