Skip to content

Commit f55bb18

Browse files
committed
Add missing files, make sure the submodule update is always recursive
1 parent 2fc6871 commit f55bb18

5 files changed

+13
-3
lines changed

.github/workflows/ios-end-to-end-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
- name: Checkout submodules
102102
run: |
103103
git config --global --add safe.directory '*'
104-
git submodule update --init ios/wireguard-apple
104+
git submodule update --init --recursive ios/wireguard-apple
105105
106106
- name: Configure Rust
107107
run: rustup target add aarch64-apple-ios

.github/workflows/ios-screenshots-creation.yml

+5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ jobs:
2323
- name: Checkout repository
2424
uses: actions/checkout@v4
2525

26+
- name: Checkout submodules
27+
run: |
28+
git config --global --add safe.directory '*'
29+
git submodule update --init ios/wireguard-apple
30+
2631
- name: Setup go-lang
2732
uses: actions/setup-go@v3
2833
with:

.github/workflows/ios-screenshots-tests.yml

+5
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ jobs:
2727
- name: Checkout repository
2828
uses: actions/checkout@v4
2929

30+
- name: Checkout submodules
31+
run: |
32+
git config --global --add safe.directory '*'
33+
git submodule update --init --recursive ios/wireguard-apple
34+
3035
- name: Configure cache
3136
uses: actions/cache@v3
3237
with:

.github/workflows/ios-validate-build-schemas.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Checkout submodules
3232
run: |
3333
git config --global --add safe.directory '*'
34-
git submodule update --init ios/wireguard-apple
34+
git submodule update --init --recursive ios/wireguard-apple
3535
3636
- name: Configure cache
3737
uses: actions/cache@v3

.github/workflows/ios.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Checkout submodules
5959
run: |
6060
git config --global --add safe.directory '*'
61-
git submodule update --init ios/wireguard-apple
61+
git submodule update --init --recursive ios/wireguard-apple
6262
6363
6464
- name: Configure cache

0 commit comments

Comments
 (0)