File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
actions/build-native-images Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 11name : ' native-tools-setup'
22description : ' Set Up GraalVM Native Image Tools'
33inputs :
4+ binary-directory :
5+ required : true
46 trace-directory :
57 required : false
68 default : " "
1517 if [ "${{ inputs.trace-directory }}" != "" ]; then
1618 export CLASSPATH="`cd ${{ inputs.trace-directory }}/../..; pwd`:${CLASSPATH}"
1719 fi
18- ${{ github.action_path }}/native-images
20+ ${{ github.action_path }}/native-images ${{ inputs.binary-directory }}
1921 shell : bash
Original file line number Diff line number Diff line change @@ -142,6 +142,9 @@ jobs:
142142 path : ${{ inputs.trace-directory }}
143143 - name : " Build Native Images"
144144 uses : ./.github/actions/build-native-images
145+ with :
146+ binary-directory : ${{ inputs.output-directory }}
147+ trace-directory : ${{ inputs.trace ? inputs.trace-directory : '' }}
145148 - name : " Archive Native Images"
146149 uses : actions/upload-artifact@v4
147150 with :
You can’t perform that action at this time.
0 commit comments