Skip to content

Commit

Permalink
Fix unterminated string literals in python layer building command
Browse files Browse the repository at this point in the history
  • Loading branch information
jormundur00 committed Sep 19, 2024
1 parent 120334b commit dd8671b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-layers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,5 +116,5 @@ jobs:
python-version: '${{env.PYTHON_VERSION}}'
- name: Build layer
run: |
python3 -c 'import vm.build_layer; vm.build_layer.build_layer("${{matrix.coordinates}}.split('|')[0]", "${{env.GRAALVM_HOME}}/bin/native-image");'
python3 -c 'import vm.build_layer; vm.build_layer.build_layer("${{matrix.coordinates}}.split('|')[1]", "${{env.GRAALVM_HOME}}/bin/native-image");'
python3 -c 'import vm.build_layer; vm.build_layer.build_layer("${{matrix.coordinates}}".split('|')[0], "${{env.GRAALVM_HOME}}/bin/native-image");'
python3 -c 'import vm.build_layer; vm.build_layer.build_layer("${{matrix.coordinates}}".split('|')[1], "${{env.GRAALVM_HOME}}/bin/native-image");'

0 comments on commit dd8671b

Please sign in to comment.