-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add option to force using 32 bit cmake (#33)
- Loading branch information
Showing
11 changed files
with
683 additions
and
338 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
|
||
|
||
jobs: | ||
check-win32: | ||
runs-on: ${{ matrix.os }} | ||
name: Check action on 32bit windows | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [windows-latest] | ||
cmake_ver: ['', '3.19.3', '3.15.1', '2.8'] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup cmake | ||
uses: ./ | ||
id: setup | ||
with: | ||
cmake-version: ${{ matrix.cmake_ver }} | ||
use-32bit: 'true' | ||
|
||
- name: Run cmake --version | ||
shell: bash | ||
run: | | ||
VERSION=`cmake --version` | ||
echo $VERSION | ||
[[ "$VERSION" =~ "${{ matrix.cmake_ver }}" ]] |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.