Skip to content

Commit cfcc962

Browse files
committed
chore: scripts now take parameter to only compile for that specific language
1 parent 4952608 commit cfcc962

4 files changed

+4
-4
lines changed

.github/workflows/test-csharp-bindings.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: dtolnay/rust-toolchain@stable
2626

2727
- name: Run compile script
28-
run: ./scripts/compile.sh
28+
run: ./scripts/compile.sh csharp
2929
shell: bash
3030

3131
- name: Set up .NET

.github/workflows/test-golang-bindings.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: dtolnay/rust-toolchain@stable
2626

2727
- name: Run compile script
28-
run: ./scripts/compile.sh
28+
run: ./scripts/compile.sh golang
2929
shell: bash
3030

3131
- name: Set up Go

.github/workflows/test-java-bindings.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: dtolnay/rust-toolchain@stable
2626

2727
- name: Run compile script
28-
run: ./scripts/compile.sh
28+
run: ./scripts/compile.sh java
2929
shell: bash
3030

3131
- name: Set up JDK

.github/workflows/test-nim-bindings.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: dtolnay/rust-toolchain@stable
2727

2828
- name: Run compile script
29-
run: ./scripts/compile.sh
29+
run: ./scripts/compile.sh nim
3030
shell: bash
3131

3232
- name: Setup Nim

0 commit comments

Comments
 (0)