File tree Expand file tree Collapse file tree 1 file changed +0
-24
lines changed
Expand file tree Collapse file tree 1 file changed +0
-24
lines changed Original file line number Diff line number Diff line change 1010 branches : [ master ]
1111
1212jobs :
13- # old-school build and jar method. No tests run or compiled.
14- build-1_6 :
15- name : Java 1.6
16- runs-on : ubuntu-latest
17- steps :
18- - uses : actions/checkout@v4
19- - name : Setup java
20- uses : actions/setup-java@v1
21- with :
22- java-version : 1.6
23- - name : Compile Java 1.6
24- run : |
25- mkdir -p target/classes
26- javac -version
27- javac -source 1.6 -target 1.6 -d target/classes/ src/main/java/org/json/*.java
28- - name : Create java 1.6 JAR
29- run : |
30- jar cvf target/org.json.jar -C target/classes .
31- - name : Upload JAR 1.6
32- if : ${{ always() }}
33- uses : actions/upload-artifact@v3
34- with :
35- name : Create java 1.6 JAR
36- path : target/*.jar
3713
3814 build-8 :
3915 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments