-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test the release-build process in GitHub Actions (#525)
- Add a GitHub action to test the release-build process and make sure we don't introduce any reproducibility issues in a new change. - Show what's different in console output if the release build fails for reproducibility reasons (to make troubleshooting easier in GHA). - Fail install-deps.sh if the already-installed Node version is too old.
- Loading branch information
1 parent
d8faefb
commit d550deb
Showing
4 changed files
with
47 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: test-release-build | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.x | ||
- name: Install Dependencies | ||
run: sh ./install-deps.sh | ||
- name: Make a Temporary Version Number (if needed) | ||
run: | | ||
if [ -z "$(git tag --points-at=HEAD)" ]; then | ||
node -e "x=`cat assets/manifest.json`; x.version='9999.99.9999'; console.log(JSON.stringify(x))" >assets/manifest.json.new | ||
mv assets/manifest.json.new assets/manifest.json | ||
make fix-style | ||
git config --global user.name "GitHub Actions" | ||
git config --global user.email "nobody@example.com" | ||
git commit -m 'Make a temporary version number' assets/manifest.json | ||
fi | ||
- name: Try Building Release Artifacts | ||
run: make rel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters