Skip to content

Commit b3b5449

Browse files
committed
remove submodules
1 parent 660ae8a commit b3b5449

File tree

4 files changed

+8
-18
lines changed

4 files changed

+8
-18
lines changed

.github/workflows/msrv.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ jobs:
2020

2121
steps:
2222
- uses: actions/checkout@v4
23-
with:
24-
submodules: true
23+
2524
- uses: actions/cache@v2
2625
with:
2726
path: |

.github/workflows/publish.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
if: ${{ startsWith(github.ref_name, 'eppo_core@') || startsWith(github.ref_name, 'rust-sdk@') }}
3131
steps:
3232
- uses: actions/checkout@v4
33-
with:
34-
submodules: true
33+
- name: Clone test data
34+
run: ./clone-test-data.sh
3535
- uses: actions/setup-node@v3
3636
with:
3737
node-version: '20'
@@ -202,8 +202,6 @@ jobs:
202202
needs: cross_gems
203203
steps:
204204
- uses: actions/checkout@v4
205-
with:
206-
submodules: true
207205

208206
- uses: actions/setup-node@v3
209207
with:

.github/workflows/python.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#
66
# Manually modified:
77
# - tag filter in Release job to only trigger on python-sdk@ tags
8-
# - added checkout with submodules
98
# - replaced `pytest` with `npm run with-server test:python`
109
name: Python SDK
1110

@@ -41,8 +40,7 @@ jobs:
4140
target: ppc64le
4241
steps:
4342
- uses: actions/checkout@v4
44-
with:
45-
submodules: true
43+
4644
- uses: actions/setup-python@v5
4745
with:
4846
python-version: 3.x
@@ -118,8 +116,7 @@ jobs:
118116
target: armv7
119117
steps:
120118
- uses: actions/checkout@v4
121-
with:
122-
submodules: true
119+
123120
- uses: actions/setup-python@v5
124121
with:
125122
python-version: 3.x
@@ -182,8 +179,7 @@ jobs:
182179
target: x86
183180
steps:
184181
- uses: actions/checkout@v4
185-
with:
186-
submodules: true
182+
187183
- uses: actions/setup-python@v5
188184
with:
189185
python-version: 3.x
@@ -222,8 +218,7 @@ jobs:
222218
# target: aarch64
223219
steps:
224220
- uses: actions/checkout@v4
225-
with:
226-
submodules: true
221+
227222
- uses: actions/setup-python@v5
228223
with:
229224
python-version: 3.x
@@ -269,7 +264,7 @@ jobs:
269264
release:
270265
name: Release
271266
runs-on: ubuntu-latest
272-
if: "startsWith(github.ref, 'refs/tags/python-sdk@')"
267+
if: ${{ startsWith(github.ref, 'refs/tags/python-sdk@') }}
273268
needs: [linux, musllinux, windows, macos, sdist]
274269
steps:
275270
- uses: actions/download-artifact@v4

.github/workflows/ruby.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222

2323
steps:
2424
- uses: actions/checkout@v4
25-
with:
26-
submodules: true
2725

2826
- name: Set up Ruby & Rust
2927
uses: oxidize-rb/actions/setup-ruby-and-rust@v1

0 commit comments

Comments
 (0)