Skip to content

Commit

Permalink
[test] Fix Java fut.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfusik committed Oct 20, 2023
1 parent 0e27b43 commit 7848915
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ jobs:
java-version: 21
- uses: actions/setup-node@main
- uses: actions/checkout@main
- run: make -j3 host-diff java/GenBase.java
- run: make -j3 host-diff
- run: make -j3 java/GenBase.java
- run: make -j3 test-error FUT_HOST=cs
- run: make -j3 test-error FUT_HOST=java
- run: make -j3 test-error FUT_HOST=node
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ test-cs test-GenCs.fu: $(patsubst test/%.fu, test/bin/%/cs.txt, $(wildcard test/
test-d test-GenD.fu: $(patsubst test/%.fu, test/bin/%/d.txt, $(wildcard test/*.fu))
$(DO_SUMMARY)

test-java test-GenJava.fu: $(patsubst test/%.fu, test/bin/%/java.txt, $(wildcard test/*.fu)) java/GenBase.java
test-java test-GenJava.fu: $(patsubst test/%.fu, test/bin/%/java.txt, $(wildcard test/*.fu))
$(DO_SUMMARY)

test-js test-GenJs.fu: $(patsubst test/%.fu, test/bin/%/js.txt, $(wildcard test/*.fu)) libfut.js
Expand Down

0 comments on commit 7848915

Please sign in to comment.