To publish a new version of wasi-sdk
as a GitHub release:
-
Tag a commit with an annotated tag. Note that this must be an annotated tag, not a lightweight tag, so that
version.py
can use it for calculating the package version (usegit show wasi-sdk-...
to show other tag messages). Note that you may need to clear the repository cache to avoid problems with cached artifacts 1.TAG=wasi-sdk-1 git tag -a $TAG git push origin $TAG
-
Find a successful workflow that CI has run for the tag. That successful workflow run will have build artifacts that need to be attached to the release. One could search around in the GitHub actions, but the following script will list completed workflows for a tag (get a token here):
ci/get-workflows-for-tag.sh $TAG $GITHUB_TOKEN
-
Check that the workflow built the artifacts for the given tag and that the workflow completed successfully:
ci/is-workflow-valid.sh $TAG $WORKFLOW_RUN_ID $GITHUB_TOKEN
-
Download and unzip the workflow artifacts. Note that artifacts with
+m
or.m
suffixes indicate that the Git tree was modified. Expect some duplicates since some of the same artifacts are built on multiple CI runners (e.g., Windows, MacOS, Linux). The following script does all of this automatically:ci/download-workflow-artifacts.sh $WORKFLOW_RUN_ID $GITHUB_TOKEN
-
Draft a new release. This could be done manually but the following script simplifies the uploading of all the files and auto-generates the release description:
ci/draft-release.sh $TAG $ARTIFACTS_DIR $GITHUB_TOKEN
-
Publish the release; the previous step only creates a draft. Follow the link in the previous step or navigate to the GitHub releases to review the description, commit, tag, and assets before clicking "Publish."
-
Remember to tag the wasi-libc repository with the new
$TAG
version.git submodule status -- src/wasi-libc # grab $WASI_LIBC_COMMIT from the output cd $WASI_LIBC_REPO_DIR git tag $TAG $WASI_LIBC_COMMIT git push origin $TAG
Footnotes
-
Here is an example of how to clear a cache with the GitHub CLI:
↩URL=/repos/WebAssembly/wasi-sdk/actions/caches gh api $URL -q '.actions_caches[].id' \ | xargs -I {} gh api --method DELETE $URL/{}