mirror of
https://github.com/lighttransport/tinyusdz.git
synced 2026-01-18 01:11:17 +01:00
Shorten Build name
Add Windows ARM32 cross-compile CI.
This commit is contained in:
2
.github/workflows/android_ci.yml
vendored
2
.github/workflows/android_ci.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: Android arm64v8a Build
|
||||
name: Android
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
2
.github/workflows/ios_ci.yml
vendored
2
.github/workflows/ios_ci.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: iOS Build
|
||||
name: iOS
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
2
.github/workflows/linux_ci.yml
vendored
2
.github/workflows/linux_ci.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: Linux Build
|
||||
name: Linux
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
2
.github/workflows/macos_ci.yml
vendored
2
.github/workflows/macos_ci.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: macOS Build
|
||||
name: macOS
|
||||
|
||||
# TODO: Build with Python.
|
||||
|
||||
|
||||
20
.github/workflows/windows_arm_ci.yml
vendored
20
.github/workflows/windows_arm_ci.yml
vendored
@@ -1,6 +1,5 @@
|
||||
name: Windows ARM CI build
|
||||
name: Windows ARM
|
||||
|
||||
# TODO: arm32bit build.
|
||||
# TODO: Run unittest on Native ARM64 Windows11
|
||||
|
||||
on:
|
||||
@@ -29,4 +28,21 @@ jobs:
|
||||
- name: Build
|
||||
run: cmake --build build_arm64 --config Release
|
||||
|
||||
# Windows(ARM32) + Visual Studio 2022 build
|
||||
build-windows-arm32-msvc:
|
||||
|
||||
runs-on: windows-latest
|
||||
name: Build for Windows(ARM32, MSVC)
|
||||
|
||||
# Use system installed cmake
|
||||
# https://help.github.com/en/actions/reference/software-installed-on-github-hosted-runners
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v1
|
||||
- name: Configure
|
||||
run: |
|
||||
mkdir build_arm32
|
||||
cmake -G "Visual Studio 17 2022" -A ARM -Bbuild_arm32 -S.
|
||||
- name: Build
|
||||
run: cmake --build build_arm32 --config Release
|
||||
|
||||
|
||||
2
.github/workflows/windows_ci.yml
vendored
2
.github/workflows/windows_ci.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: Windows CI build
|
||||
name: Windows
|
||||
|
||||
# TODO: MinGW(gcc) build
|
||||
# TODO: llvm-mingw(clang) build
|
||||
|
||||
Reference in New Issue
Block a user