Skip to content

Commit 444ca48

Browse files
committed
update ant workflow to checkout javaforce dep
1 parent bc76b39 commit 444ca48

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/ant.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,21 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- name: Checkout Javaforce
20+
uses: actions/checkout@v4
21+
with:
22+
repository: pquiring/javaforce
23+
- name: Checkout jfCraft
24+
uses: actions/checkout@v4
25+
with:
26+
path: games/jfcraft
2027
- name: Set up JDK 17
2128
uses: actions/setup-java@v4
2229
with:
2330
java-version: '17'
2431
distribution: 'temurin'
25-
- name: Build with Ant
32+
- name: Build JavaForce with Ant
33+
run: ant -noinput -buildfile build.xml
34+
- name: Build jfCraft with Ant
2635
run: ant -noinput -buildfile build.xml
36+
working-directory: games/jfcraft

0 commit comments

Comments
 (0)