File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
vm/tests/gh_workflows/NILayerTests Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 44
44
schedule :
45
45
- cron : " 0 0 * * 1" # Once a week at midnight on Monday
46
46
push :
47
- branches :
48
- - ' jvukicev/GR-57251'
49
- # paths:
50
- # - '.github/workflows/ni-layers.yml'
47
+ paths :
48
+ - ' .github/workflows/ni-layers.yml'
51
49
pull_request :
52
50
paths :
53
51
- ' .github/workflows/ni-layers.yml'
@@ -121,5 +119,5 @@ jobs:
121
119
python-version : ' ${{ env.PYTHON_VERSION }}'
122
120
- name : Build layer
123
121
run : |
124
- python3 ${{ env.LIBRARY_METADATA_PATH }}/build_layer.py ${{ matrix.coordinates }} ${{ env.GRAALVM_HOME }}/bin/native-image 0
125
- python3 ${{ env.LIBRARY_METADATA_PATH }}/build_layer.py ${{ matrix.coordinates }} ${{ env.GRAALVM_HOME }}/bin/native-image 1
122
+ python3 ${{ env.LIBRARY_METADATA_PATH }}/build_layer.py ${{ env.GRAALVM_HOME }}/bin/native-image 0 ${{ matrix.coordinates }}
123
+ python3 ${{ env.LIBRARY_METADATA_PATH }}/build_layer.py ${{ env.GRAALVM_HOME }}/bin/native-image 1 ${{ matrix.coordinates }}
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def generate_matrix(path_to_data):
33
33
with open (os .environ ['GITHUB_OUTPUT' ], 'a' ) as f :
34
34
print (f"matrix={ json .dumps (matrix )} " , file = f )
35
35
36
- def build_layer (gav , native_image_path , lib_in_pair ):
36
+ def build_layer (native_image_path , lib_in_pair , gav ):
37
37
'''
38
38
Builds a native-image layer out of the library, given its GAV coordinates and native-image path.
39
39
You can’t perform that action at this time.
0 commit comments