Skip to content

Commit 137b99a

Browse files
Update CI
1 parent 2e09e74 commit 137b99a

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/ci_test_go.yml

+7-8
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,13 @@ jobs:
6565
run: |
6666
sed "s/mplDependencyJavaVersion=.*/mplDependencyJavaVersion=${{inputs.mpl-version}}/g" project.properties > project.properties2; mv project.properties2 project.properties
6767
68-
# - name: Regenerate code using smithy-dafny if necessary
69-
# if: ${{ inputs.regenerate-code }}
70-
# uses: ./.github/actions/polymorph_codegen
71-
# with:
72-
# dafny: ${{ env.DAFNY_VERSION }}
73-
# library: ${{ matrix.library }}
74-
# diff-generated-code: false
75-
# update-and-regenerate-mpl: true
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
7675
7776
- name: Install Go
7877
uses: actions/setup-go@v5

0 commit comments

Comments
 (0)