Skip to content

Commit

Permalink
Try a fix
Browse files Browse the repository at this point in the history
  • Loading branch information
davidanthoff committed Jul 13, 2024
1 parent 68d23c1 commit 93ae2f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# julia-get-compatible-juliaup Action
# julia-run-testitems

This is an experiment, nothing to see at the moment.
6 changes: 5 additions & 1 deletion main.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,15 @@ println("NOW LOOK AT ENV")

println(ENV["OUR_FOO"])

envs = JSON.parse(ENV["OUR_FOO"])

println("DONE WITH FOO")

println(envs)

results = run_tests(
pwd(),
environments=[TestEnvironment("Julia $i", true, Dict("JULIAUP_CHANNEL"=>i,"JULIA_DEPOT_PATH"=>joinpath(ARGS[1], "juliadepots/julia-$i"))) for i in ARGS[2:end]],
environments=[TestEnvironment(i["Name"], true, Dict(j in i["Env"])) for i in envs],
fail_on_detection_error=false,
return_results=true,
print_failed_results=false,
Expand Down

0 comments on commit 93ae2f3

Please sign in to comment.