mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-08 21:24:34 +00:00
clean
Removed intel runner from mac, it never run Removed arm from windows as it will always fail as git ci runners are not arm removed gcc12 kept gcc13 Added convenience function for checking if a package is active
This commit is contained in:
parent
4062a1bbbd
commit
872c765ca0
5 changed files with 23 additions and 31 deletions
9
.github/workflows/build-linux-gcc.yml
vendored
9
.github/workflows/build-linux-gcc.yml
vendored
|
|
@ -21,15 +21,6 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
config:
|
||||
# Explicit older GCC versions catch deprecation warnings before
|
||||
# they become the runner default and break the build silently.
|
||||
- {
|
||||
name: "Ubuntu GCC 12",
|
||||
build_type: "Release",
|
||||
cc: "gcc-12",
|
||||
cxx: "g++-12",
|
||||
generator: "Ninja",
|
||||
}
|
||||
- {
|
||||
name: "Ubuntu GCC 13",
|
||||
build_type: "Release",
|
||||
|
|
|
|||
10
.github/workflows/build-macos-clang.yml
vendored
10
.github/workflows/build-macos-clang.yml
vendored
|
|
@ -21,8 +21,6 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
config:
|
||||
# macos-latest is Apple Silicon (arm64). The Intel entry below
|
||||
# covers x86_64 users who haven't migrated yet.
|
||||
- {
|
||||
name: "macOS ARM Clang Ninja",
|
||||
os: "macos-latest",
|
||||
|
|
@ -31,14 +29,6 @@ jobs:
|
|||
cxx: "clang++",
|
||||
generator: "Ninja",
|
||||
}
|
||||
- {
|
||||
name: "macOS Intel Clang Ninja",
|
||||
os: "macos-13",
|
||||
build_type: "Release",
|
||||
cc: "clang",
|
||||
cxx: "clang++",
|
||||
generator: "Ninja",
|
||||
}
|
||||
- {
|
||||
name: "macOS ARM Xcode",
|
||||
os: "macos-latest",
|
||||
|
|
|
|||
12
.github/workflows/build-windows-msvc.yml
vendored
12
.github/workflows/build-windows-msvc.yml
vendored
|
|
@ -57,18 +57,6 @@ jobs:
|
|||
msvc_arch: "amd64",
|
||||
can_test: true,
|
||||
}
|
||||
- {
|
||||
name: "Windows ARM64 MSVC",
|
||||
os: "windows-latest",
|
||||
build_type: "Release",
|
||||
cc: "cl",
|
||||
cxx: "cl",
|
||||
generator: "Visual Studio 18 2026",
|
||||
cmake_args: "-A ARM64",
|
||||
compiler_family: "msvc",
|
||||
msvc_arch: "amd64_arm64",
|
||||
can_test: false,
|
||||
}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue