|
|
@@ -5,10 +5,43 @@ on:
|
|
|
push:
|
|
|
branches:
|
|
|
- master
|
|
|
- paths: ['.github/workflows/build.yml', '.github/workflows/build-linux-cross.yml', '**/CMakeLists.txt', '**/.cmake', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.cuh', '**/*.swift', '**/*.m', '**/*.metal', '**/*.comp']
|
|
|
+ paths: [
|
|
|
+ '.github/workflows/build.yml',
|
|
|
+ '.github/workflows/build-linux-cross.yml',
|
|
|
+ '.github/workflows/build-cmake-pkg.yml',
|
|
|
+ '**/CMakeLists.txt',
|
|
|
+ '**/.cmake',
|
|
|
+ '**/*.h',
|
|
|
+ '**/*.hpp',
|
|
|
+ '**/*.c',
|
|
|
+ '**/*.cpp',
|
|
|
+ '**/*.cu',
|
|
|
+ '**/*.cuh',
|
|
|
+ '**/*.swift',
|
|
|
+ '**/*.m',
|
|
|
+ '**/*.metal',
|
|
|
+ '**/*.comp'
|
|
|
+ ]
|
|
|
+
|
|
|
pull_request:
|
|
|
types: [opened, synchronize, reopened]
|
|
|
- paths: ['.github/workflows/build.yml', '.github/workflows/build-linux-cross.yml', '**/CMakeLists.txt', '**/.cmake', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.cuh', '**/*.swift', '**/*.m', '**/*.metal', '**/*.comp']
|
|
|
+ paths: [
|
|
|
+ '.github/workflows/build.yml',
|
|
|
+ '.github/workflows/build-linux-cross.yml',
|
|
|
+ '.github/workflows/build-cmake-pkg.yml',
|
|
|
+ '**/CMakeLists.txt',
|
|
|
+ '**/.cmake',
|
|
|
+ '**/*.h',
|
|
|
+ '**/*.hpp',
|
|
|
+ '**/*.c',
|
|
|
+ '**/*.cpp',
|
|
|
+ '**/*.cu',
|
|
|
+ '**/*.cuh',
|
|
|
+ '**/*.swift',
|
|
|
+ '**/*.m',
|
|
|
+ '**/*.metal',
|
|
|
+ '**/*.comp'
|
|
|
+ ]
|
|
|
|
|
|
concurrency:
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}
|
|
|
@@ -478,6 +511,9 @@ jobs:
|
|
|
build-linux-cross:
|
|
|
uses: ./.github/workflows/build-linux-cross.yml
|
|
|
|
|
|
+ build-cmake-pkg:
|
|
|
+ uses: ./.github/workflows/build-cmake-pkg.yml
|
|
|
+
|
|
|
macOS-latest-cmake-ios:
|
|
|
runs-on: macos-latest
|
|
|
|