Skip to content

Commit

Permalink
Fixed workflows to update submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikolaj Malecki committed Jun 25, 2024
1 parent 70a0217 commit 6c60a8f
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/abi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- uses: actions/checkout@v3
with:
path: pull_request
submodules: true
- name: configure
run: |
cd pull_request
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
ndk-version: r23
add-to-path: false
- uses: actions/checkout@v3
with:
submodules: true
- name: build
run: |
cd ./scripts/build-android/
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true

- name: Configure
run: cmake -DENABLE_HEAVY_LOGGING=1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=-fpermissive -DENABLE_BONDING=1 .
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cxx11-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
- name: GoogleTest
run: brew install googletest
- uses: actions/checkout@v3
with:
submodules: true
- name: configure
run: |
mkdir _build && cd _build
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cxx11-win.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: configure
run: |
md _build && cd _build
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/iOS.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: configure
run: |
mkdir _build && cd _build
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/s390x-focal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
"
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: configure
uses: docker://multiarch/ubuntu-core:s390x-focal
with:
Expand Down

0 comments on commit 6c60a8f

Please sign in to comment.