File tree Expand file tree Collapse file tree 1 file changed +0
-34
lines changed Expand file tree Collapse file tree 1 file changed +0
-34
lines changed Original file line number Diff line number Diff line change 4040 *_VERSION
4141
4242
43- create_binaries :
44- runs-on : ubuntu-latest
45- steps :
46- - name : ' Set up JDK'
47- uses : actions/setup-java@v3
48- with :
49- distribution : zulu
50- java-version : 11
51-
52- - name : ' Prepare branch name'
53- run : >
54- echo "refName=${GITHUB_REF##*/}" >> $GITHUB_ENV
55- - name : ' Checkout relevant branch'
56- uses : actions/checkout@v3
57- with :
58- ref : ${{ env.refName }}
59-
60- - name : ' Cache Maven packages'
61- uses : actions/cache@v3
62- with :
63- path : ~/.m2
64- key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}-${{ github.sha }}
65-
66- - name : ' Create distribution'
67- run : >
68- mvn -B --file pom.xml -Pnative -DskipTests -pl iot.technology:toolkit-app package -am
69-
70- - name : ' Upload build artifact'
71- uses : actions/upload-artifact@v2
72- with :
73- name : artifacts
74- path : toolkit-app/target/*.zip
75-
7643 create_native_binaries :
77- if : (github.event_name == 'create' && github.event.ref_type == 'tag')
7844 name : ' Build with Graal on ${{ matrix.os }}'
7945 strategy :
8046 fail-fast : true
You can’t perform that action at this time.
0 commit comments