-
Notifications
You must be signed in to change notification settings - Fork 615
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 #576 from dscho/more-robust-installer-downgrade-check
Regularly test the version comparison functionality
- Loading branch information
Showing
3 changed files
with
93 additions
and
8 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 |
---|---|---|
|
@@ -254,7 +254,7 @@ jobs: | |
- name: build installer | ||
if: matrix.artifact == 'build-installers' | ||
shell: bash | ||
run: ./installer/release.sh --output=$PWD/installer-${{ matrix.bitness }} 0-test | ||
run: ./installer/release.sh --include-self-check --output=$PWD/installer-${{ matrix.bitness }} 0-test | ||
- uses: actions/upload-artifact@v4 | ||
if: matrix.artifact == 'build-installers' | ||
with: | ||
|
@@ -297,7 +297,8 @@ jobs: | |
checklist=installer/run-checklist.sh && | ||
# cannot test SSH keys in read-only mode, skip test for now | ||
sed -i 's|[email protected]:v3/git-for-windows/git/git|https://github.com/git/git|' $checklist && | ||
sh -x $checklist | ||
sh -x $checklist && | ||
git update-git-for-windows --test-version-compare | ||
check-for-missing-dlls: | ||
needs: determine-packages | ||
if: needs.determine-packages.outputs.test-sdk-artifacts == 'true' || needs.determine-packages.outputs.check-for-missing-dlls == 'true' | ||
|
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