File tree 1 file changed +7
-8
lines changed
1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -65,14 +65,13 @@ jobs:
65
65
run : |
66
66
sed "s/mplDependencyJavaVersion=.*/mplDependencyJavaVersion=${{inputs.mpl-version}}/g" project.properties > project.properties2; mv project.properties2 project.properties
67
67
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
76
75
77
76
- name : Install Go
78
77
uses : actions/setup-go@v5
You can’t perform that action at this time.
0 commit comments