Skip to content

Files

Failed to load latest commit information.

Latest commit

 Cannot retrieve latest commit at this time.

History

History
 
 

release

Releasing instructions

earthly

  • Make sure you have access to the earthly-technologies organization secrets.
    ./earthly secrets ls /earthly-technologies
  • Make sure you have uploaded your aws credentials to your user secrets.
    ./earthly secrets get /user/earthly-technologies/aws/credentials
  • Choose the next release tag.
    export RELEASE_TAG="v..."
  • Make sure you are on main
    git checkout main && git pull
  • If you are releasing a new major or minor version (X.0.0 or X.X.0), then you need to update the license text. Under licenses/BSL
    • Update the version under Licensed Work to point to the new version (without the .0 suffix)
    • Update the year ((c) 2021) to point to the current year
    • Update the Change Date to the first April 1st after a three year period. So if today is Jan 2077, then update to 2080-04-01. If it's June 2077, then update to 2081-04-01.
    • Commit this to the main branch before continuing.
  • Update the CHANGELOG.md with the corresponding release notes and open a PR
  • Make sure that main build is green for all platforms (check build status for the latest commit on GitHub).
  • Make sure nightly BuildKite builds are green for most recent build
    Platform Status
    MacOS (x86) Build status
    MacOS (M1) Build status
    Windows (WSL) Build status
  • Run
    env -i HOME="$HOME" PATH="$PATH" SSH_AUTH_SOCK="$SSH_AUTH_SOCK" RELEASE_TAG="$RELEASE_TAG" ./release.sh
  • Merge branch main into next, then merge branch next into main.
  • Update the version for the installation command in the following places:
  • you can try doing that with:
    REGEX='\(earthly\/releases\/download\/\)v[0-9]\+\.[0-9]\+\.[0-9]\+\(\/\)'; grep -Ril './docs/' -e $REGEX | xargs -n1 sed -i 's/'$REGEX'/\1'$RELEASE_TAG'\2/g'
    
  • Update the pinned image tags used in the following places:
  • you can try doing that with:
    REGEX='\(\searthly\/\(buildkitd\|earthly\):\)v[0-9]\+\.[0-9]\+\.[0-9]\+'; grep -Ril './docs/' -e $REGEX | xargs -n1 sed -i 's/'$REGEX'/\1'$RELEASE_TAG'/g'
  • Update the Docker image documentation's tags with the new version, plus the prior two image versions under:
  • After GitBook has processed the main branch, run a broken link checker over https://docs.earthly.dev. This one is fast and easy: https://www.deadlinkchecker.com/.
  • Verify the Homebrew release job has successfully run and has merged the new release-v... branch into main.
  • Copy the release notes you have written before and paste them in the Earthly Community slack channel #announcements, together with a link to the release's GitHub page. If you have Slack markdown editing activated, you can copy the markdown version of the text.
  • Ask Adam to tweet about the release.

One-Time (clear this section when done during release)

  • Add new one-time items here.

Performing a test release

To perform a test release to a personal repo, first:

  1. fork a copy of both earthly/earthly, and earthly/homebrew-earthly
  2. commit your changes you wish to release and push them to your personal repo.
  3. save a copy of your GitHub token to +secrets/user/github-token (e.g. earthly secrets set /user/github-token keep-it-secret)

Then run:

RELEASE_TAG=v0.5.10 GITHUB_USER=mygithubuser DOCKERHUB_USER=mydockerhubuser EARTHLY_REPO=earthly BREW_REPO=homebrew-earthly GITHUB_SECRET_PATH=+secrets/user/github-token ./release.sh

NOTE: apt and yum repos do not currently support test releases. (TODO: fix this)

Troubleshooting

If the release-homebrew fails with a rejected git push, you may have to delete the remote branch by running the following under the interactive debugger:

git push "$GIT_USERNAME" --delete "release-$RELEASE_TAG"

Rollbacks

If you need to rollback/disable a version:

  1. Go to GitHub releases, click on the edit release button, then check the This is a prerelease checkbox.
  2. Check out the earthly/homebrew-earthly repo, and run:
git checkout main
git revert --no-commit 123abc..HEAD # where `123abc` is the sha1 commit to roll back to
git commit # enter a message saying you are rolling back
git push
  1. TODO need to create targets for apt and yum Earthfiles to perform rollbacks

dind

Docker-in-Docker (dind) images change less frequently than earthly, but take a long time to build. These images can be rebuilt by running:

./earthly --push ./release+release-dind --RELEASE_TAG="$RELEASE_TAG"

VS Code syntax highlighting

  • First set the version to publish:
    export VSCODE_RELEASE_TAG="v..."
    (You can see what is already published)
  • Make sure that the version has release notes already in the README
  • Then publish it:
    ./earthly \
      --push \
      ./release+release-vscode-syntax-highlighting \
      --VSCODE_RELEASE_TAG="$VSCODE_RELEASE_TAG"
  • Finally, tag git for future reference
    git tag "vscode-syntax-highlighting-$VSCODE_RELEASE_TAG"
    git push origin "vscode-syntax-highlighting-$VSCODE_RELEASE_TAG"

(If token has expired, Vlad can regenerate one following this guide and then setting it using ./earthly secrets set /earthly-technologies/vsce/token '...')