Skip to content

Commit 1a0a94b

Browse files
committed
Adding workflow_call: trigger to missing build actions
1 parent bae2e1e commit 1a0a94b

4 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/build-golang.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Go
22

33
on:
4+
workflow_call:
45
workflow_dispatch:
56
pull_request:
67
paths:

.github/workflows/build-java.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Build Java SDK
22

33
on:
4+
workflow_call:
45
workflow_dispatch:
56
pull_request:
67
paths:

.github/workflows/build-libs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Build Platform Libraries
22

33
on:
4+
workflow_call:
45
workflow_dispatch:
56
pull_request:
67
paths:

.github/workflows/build-ruby.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Build Ruby bindings
22

33
on:
4+
workflow_call:
45
workflow_dispatch:
56
pull_request:
67
paths:
@@ -53,8 +54,6 @@ jobs:
5354
DYLD_FALLBACK_LIBRARY_PATH: "${{ github.workspace }}/libs"
5455
DYLD_LIBRARY_PATH: "${{ github.workspace }}/libs"
5556
LD_LIBRARY_PATH: "${{ github.workspace }}/libs"
56-
DYLD_FALLBACK_LIBRARY_PATH: "${{ github.workspace }}/libs"
57-
DYLD_LIBRARY_PATH: "${{ github.workspace }}/libs"
5857
- name: Upload Unit Test Results - Ruby
5958
if: always()
6059
uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)