Browse Source
Updated workflow files (#2079)
* Updated workflow files
* added the manual trigger to the android workflow
pull/2082/head
mandar1jn
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with
75 additions and
6 deletions
-
.github/workflows/android.yml
-
.github/workflows/cmake.yml
-
.github/workflows/linux.yml
-
.github/workflows/linux_examples.yml
-
.github/workflows/macos.yml
-
.github/workflows/webassembly.yml
-
.github/workflows/windows.yml
-
.github/workflows/windows_examples.yml
|
|
@ -1,8 +1,18 @@ |
|
|
|
name: Android |
|
|
|
|
|
|
|
on: |
|
|
|
workflow_dispatch: |
|
|
|
push: |
|
|
|
workflow_dispatch: |
|
|
|
paths: |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/android.yml' |
|
|
|
pull_request: |
|
|
|
paths: |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/android.yml' |
|
|
|
release: |
|
|
|
types: [published] |
|
|
|
|
|
|
|
|
|
@ -1,8 +1,17 @@ |
|
|
|
name: CMakeBuilds |
|
|
|
|
|
|
|
on: |
|
|
|
workflow_dispatch: |
|
|
|
push: |
|
|
|
paths: |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/cmake.yml' |
|
|
|
pull_request: |
|
|
|
paths: |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/cmake.yml' |
|
|
|
|
|
|
|
env: |
|
|
|
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) |
|
|
|
|
|
@ -1,8 +1,17 @@ |
|
|
|
name: Linux |
|
|
|
|
|
|
|
on: |
|
|
|
on: |
|
|
|
workflow_dispatch: |
|
|
|
push: |
|
|
|
paths: |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/linux.yml' |
|
|
|
pull_request: |
|
|
|
paths: |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/linux.yml' |
|
|
|
release: |
|
|
|
types: [published] |
|
|
|
|
|
|
|
|
|
@ -1,11 +1,18 @@ |
|
|
|
name: Linux Examples |
|
|
|
|
|
|
|
on: |
|
|
|
workflow_dispatch: |
|
|
|
push: |
|
|
|
paths: |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/linux_examples.yml' |
|
|
|
pull_request: |
|
|
|
branches: [ master ] |
|
|
|
paths: |
|
|
|
- 'examples/**' |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/linux_examples.yml' |
|
|
|
|
|
|
|
jobs: |
|
|
|
build: |
|
|
|
|
|
@ -1,8 +1,17 @@ |
|
|
|
name: macOS |
|
|
|
|
|
|
|
on: |
|
|
|
on: |
|
|
|
workflow_dispatch: |
|
|
|
push: |
|
|
|
paths: |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/macos.yml' |
|
|
|
pull_request: |
|
|
|
paths: |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/macos.yml' |
|
|
|
release: |
|
|
|
types: [published] |
|
|
|
|
|
|
|
|
|
@ -1,8 +1,17 @@ |
|
|
|
name: WebAssembly |
|
|
|
|
|
|
|
on: |
|
|
|
on: |
|
|
|
workflow_dispatch: |
|
|
|
push: |
|
|
|
paths: |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/webassembly.yml' |
|
|
|
pull_request: |
|
|
|
paths: |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/webassembly.yml' |
|
|
|
release: |
|
|
|
types: [published] |
|
|
|
|
|
|
|
|
|
@ -1,8 +1,17 @@ |
|
|
|
name: Windows |
|
|
|
|
|
|
|
on: |
|
|
|
on: |
|
|
|
workflow_dispatch: |
|
|
|
push: |
|
|
|
paths: |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/windows.yml' |
|
|
|
pull_request: |
|
|
|
paths: |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/windows.yml' |
|
|
|
release: |
|
|
|
types: [published] |
|
|
|
|
|
|
|
|
|
@ -1,11 +1,18 @@ |
|
|
|
name: Windows Examples |
|
|
|
|
|
|
|
on: |
|
|
|
workflow_dispatch: |
|
|
|
push: |
|
|
|
paths: |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/windows_examples.yml' |
|
|
|
pull_request: |
|
|
|
branches: [ master ] |
|
|
|
paths: |
|
|
|
- 'examples/**' |
|
|
|
- 'src/**' |
|
|
|
- 'examples/**' |
|
|
|
- '.github/workflows/windows_examples.yml' |
|
|
|
|
|
|
|
jobs: |
|
|
|
build: |
|
|
|