Update old-structured release build#214
Open
hakiatalov wants to merge 3 commits into
Open
Conversation
mrysav
reviewed
Apr 24, 2026
Comment on lines
34
to
43
| - name: Checkout BLISRuntime | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| repository: 'C4G/BLISRuntime' | ||
| # BLISRuntime contains large binary files using Git LFS | ||
| # https://git-lfs.com/ | ||
| lfs: true | ||
| ref: ${{ inputs.blisruntime_branch }} | ||
| path: 'BLISRuntime' | ||
|
|
Collaborator
There was a problem hiding this comment.
Not sure if it matters at the moment, but I believe we can get around needing to using LFS by downloading the archive of the repository that I uploaded as a release, eg `curl https://github.com/C4G/BLISRuntime/releases/download/v4.0.0/BLISRuntime.zip > BLISRuntime.zip && unzip BLISRuntime.zip BLISRuntime/
mrysav
reviewed
Apr 24, 2026
|
|
||
| # Copy BLIS-NG executable | ||
| Copy-Item "./BLIS-NG/bin/Release/net10.0/win-x64/publish/BLIS-NG.exe" -Destination "./BLIS-Standalone/" | ||
| cp BLIS-NG/bin/Release/net10.0/win-x64/publish/BLIS-NG.exe BLIS-Standalone/ |
Collaborator
There was a problem hiding this comment.
Suggested change
| cp BLIS-NG/bin/Release/net10.0/win-x64/publish/BLIS-NG.exe BLIS-Standalone/ | |
| cp BLIS-NG/bin/Release/net10.0/win-x64/publish/BLIS-NG.exe BLIS-Standalone/BLIS.exe |
Might as well call the new executable BLIS.exe as well.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This does not include the new directory structure to support self-update
This PR enhances the existing build-release workflow to also build an upgrade archive. Both the standalone and upgrade archives have the old directory structure.
Changes: