-
Notifications
You must be signed in to change notification settings - Fork 69
Releasing
Simon Warta edited this page Jun 6, 2024
·
12 revisions
- Update
DOCKER_TAGinMakefile - Build to create a local tag.
- If you are on an Intel machine, use
make buildto build the official version. - If not, you can use
make build-x86_64to force a non-native Intel build: This takes a long time and requires 25 GB of memory for Docker (checkdocker system info | grep -i memory).
- If you are on an Intel machine, use
- Test the new image locally.
- Update and commit the new version in
Makefile,CHANGELOG.mdandREADME.md:
export NEW_OPTIMIZER_VERSION="0.12.11" git add Makefile CHANGELOG.md README.md && git commit -m "Set version: $NEW_OPTIMIZER_VERSION" - Use
make publish-x86_64to publish the Intel/AMD version. - Use
make publish-arm64to build and publish the ARM versions (can take a long time to build on an Intel machine). git tag "v$NEW_OPTIMIZER_VERSION"git push && git push --tags