-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build OpenSSL, OpenBLAS packages using MSYS2 MinGW toolchain
- Loading branch information
Showing
6 changed files
with
87 additions
and
24 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
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
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,20 @@ | ||
name: Build MinGW OpenBLAS using MSYS2 toolchain | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
inputs: | ||
mingw_packages_branch: | ||
description: "MINGW-packages branch to build" | ||
type: string | ||
required: false | ||
default: "woarm64" | ||
|
||
jobs: | ||
mingw-w64-openssl: | ||
uses: ./.github/workflows/build-package.yml | ||
with: | ||
package_name: mingw-w64-openblas | ||
dependencies: mingw-w64-cross-gcc | ||
packages_repository: Windows-on-ARM-Experiments/MINGW-packages | ||
packages_branch: ${{ github.event.inputs.mingw_packages_branch || 'woarm64' }} |
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,20 @@ | ||
name: Build MinGW OpenSSL using MSYS2 toolchain | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
inputs: | ||
mingw_packages_branch: | ||
description: "MINGW-packages branch to build" | ||
type: string | ||
required: false | ||
default: "woarm64" | ||
|
||
jobs: | ||
mingw-w64-openssl: | ||
uses: ./.github/workflows/build-package.yml | ||
with: | ||
package_name: mingw-w64-openssl | ||
dependencies: mingw-w64-cross-gcc | ||
packages_repository: Windows-on-ARM-Experiments/MINGW-packages | ||
packages_branch: ${{ github.event.inputs.mingw_packages_branch || 'woarm64' }} |