Skip to content

Commit ff42580

Browse files
Update CI
1 parent 137b99a commit ff42580

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci_test_go.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,6 @@ jobs:
6565
run: |
6666
sed "s/mplDependencyJavaVersion=.*/mplDependencyJavaVersion=${{inputs.mpl-version}}/g" project.properties > project.properties2; mv project.properties2 project.properties
6767
68-
- name: Build ${{ matrix.library }} implementation
69-
shell: bash
70-
working-directory: ./${{ matrix.library }}
71-
run: |
72-
# This works because `node` is installed by default on GHA runners
73-
CORES=$(node -e 'console.log(os.cpus().length)')
74-
make transpile_go CORES=$CORES
75-
7668
- name: Install Go
7769
uses: actions/setup-go@v5
7870
with:
@@ -82,6 +74,14 @@ jobs:
8274
run: |
8375
go install golang.org/x/tools/cmd/goimports@latest
8476
77+
- name: Build ${{ matrix.library }} implementation
78+
shell: bash
79+
working-directory: ./${{ matrix.library }}
80+
run: |
81+
# This works because `node` is installed by default on GHA runners
82+
CORES=$(node -e 'console.log(os.cpus().length)')
83+
make transpile_go CORES=$CORES
84+
8585
- name: Test ${{ matrix.library }}
8686
working-directory: ./${{ matrix.library }}
8787
run: |

0 commit comments

Comments
 (0)