-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from rst0git/check-size-error-msg
test/check-size: show error if make fails
- Loading branch information
Showing
2 changed files
with
13 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,12 @@ jobs: | |
with: | ||
# Needed to rebase against the base branch | ||
fetch-depth: 0 | ||
# Checkout pull request HEAD commit instead of merge commit | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
- name: Configure git user details | ||
run: | | ||
git config --global user.email "bloatchecker@example.com" | ||
git config --global user.name "Bloat Checker" | ||
git config --global user.email "[email protected].com" | ||
git config --global user.name "checkpoint-restore" | ||
- name: Configure base branch without switching current branch | ||
run: git fetch origin ${GITHUB_BASE_REF}:${GITHUB_BASE_REF} | ||
- name: Compare binary size change across each commit | ||
|
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