Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: INFENG-382: Release redesign #10002

Merged
merged 27 commits into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
b0add55
build: INFENG-704: remove bumpversion for setup.py and __version__.py…
davidfluck-hpe Jun 7, 2024
be056c1
chore: INFENG-709: Remove CloudFormation bumpversion (#9460)
davidfluck-hpe Jun 7, 2024
22991cb
build: INFENG-726: generate versions.json for docs version switcher (…
davidfluck-hpe Jun 17, 2024
ad4d62e
build: INFENG-739: remove hardcoded version from Vite config (#9532)
davidfluck-hpe Jul 2, 2024
f6da7e2
build: INFENG-744: remove VERSION file (#9661)
davidfluck-hpe Jul 23, 2024
4f6283a
build: INFENG-743: remove Helm bumpversion (#9663)
davidfluck-hpe Jul 23, 2024
def515c
build: INFENG-780: Remove CircleCI bumpversion (#9785)
davidfluck-hpe Aug 5, 2024
745506d
build: INFENG-812: fix model_hub Docker tag (#9809)
davidfluck-hpe Aug 14, 2024
d4493d6
build: INFENG-809: Update CircleCI tag logic and add release dryrun w…
davidfluck-hpe Sep 10, 2024
bb160fa
build: INFENG-848: Fix gen-versions.py (#9908)
davidfluck-hpe Sep 11, 2024
5fe8ad3
build: INFENG-883: remove unused docs version picker code (#9964)
davidfluck-hpe Sep 20, 2024
5df5142
Remove remnants of model_hub.
davidfluck-hpe Sep 30, 2024
821c5b0
* Catch VERSION environment variable KeyError and re-raise with custom
davidfluck-hpe Oct 2, 2024
086c570
* Catch VERSION environment variable KeyError and re-raise with custom
davidfluck-hpe Oct 2, 2024
a17283f
* Update Helm chart comments.
davidfluck-hpe Oct 2, 2024
87b6360
* Define potential version-fetching logic in a separate inner function
davidfluck-hpe Oct 2, 2024
8b5e9ff
* Fix error in harness/setup.py get_version_from_sh() function to
davidfluck-hpe Oct 2, 2024
926a4f8
* Remove unnecessary variable assignment in harness/setup.py.
davidfluck-hpe Oct 2, 2024
6cbad2d
* Remove unnecessary f-string from docs/gen-versions.py.
davidfluck-hpe Oct 7, 2024
129d49a
* Fix GoReleaser dryrun configs for both agent and master to use the
davidfluck-hpe Oct 7, 2024
a5d1541
* Replace git-describe invocation in vite.config.mts with version.sh to
davidfluck-hpe Oct 8, 2024
410ef90
* Pre-commit shfmt and Python lint fixes.
davidfluck-hpe Oct 8, 2024
ad5c369
* Add shell=True to subprocess.run() invocation for
davidfluck-hpe Oct 8, 2024
330c36c
* Add str type to get_version_from_sh() in harness/setup.py so the
davidfluck-hpe Oct 8, 2024
79467b3
* Add comments with example tags that would match the existing
davidfluck-hpe Oct 8, 2024
a2ee124
* Switch importlib.metadata to use import-from.
davidfluck-hpe Oct 10, 2024
da9ca68
* Delete VERSION file.
davidfluck-hpe Oct 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 0 additions & 33 deletions .bumpversion.cfg

This file was deleted.

10 changes: 10 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,16 @@ jobs:
mv -v tmpfile "<<pipeline.parameters.params_basename>>"
fi

- run:
name: Set det-version parameter.
command: |
VERSION=$(./version.sh)
echo "Version is: [${VERSION}]"
echo "CIRCLE_TAG is: [${CIRCLE_TAG}]"
jq --arg version "${VERSION}" '. += {"det-version": $version}' < "<<pipeline.parameters.params_basename>>" > tmpfile
mv -v tmpfile "<<pipeline.parameters.params_basename>>"
cat "<<pipeline.parameters.params_basename>>"

# this must be last; persist the file to the workspace
- persist_to_workspace:
root: .
Expand Down
Loading
Loading