3131 - name : Build Julia (Debug)
3232 run : |
3333 ./.github/scripts/ci-build.sh debug ${{ inputs.gc_plan }} ${{ inputs.moving }}
34+ - name : Print Julia version info
35+ run : |
36+ JULIA_PATH=$(realpath $(dirname "$0"))/../mmtk-julia/mmtk-julia/vm/julia
37+ $JULIA_PATH/julia --project=. -e "using InteractiveUtils; versioninfo()"
3438 - name : Style check
3539 run : |
3640 ./.github/scripts/ci-style.sh
5256 - name : Build Julia (Debug)
5357 run : |
5458 ./.github/scripts/ci-build.sh debug ${{ inputs.gc_plan }} ${{ inputs.moving }}
59+ - name : Print Julia version info
60+ run : |
61+ JULIA_PATH=$(realpath $(dirname "$0"))/../mmtk-julia/mmtk-julia/vm/julia
62+ $JULIA_PATH/julia --project=. -e "using InteractiveUtils; versioninfo()"
5563 - name : Style check
5664 run : |
5765 ./.github/scripts/ci-style.sh
@@ -95,6 +103,10 @@ jobs:
95103 - name : Build Julia (Release)
96104 run : |
97105 ./.github/scripts/ci-build.sh release ${{ inputs.gc_plan }} ${{ inputs.moving }}
106+ - name : Print Julia version info
107+ run : |
108+ JULIA_PATH=$(realpath $(dirname "$0"))/../mmtk-julia/mmtk-julia/vm/julia
109+ $JULIA_PATH/julia --project=. -e "using InteractiveUtils; versioninfo()"
98110 - name : Test Julia
99111 run : |
100112 ./.github/scripts/ci-test-other.sh
@@ -117,6 +129,10 @@ jobs:
117129 - name : Build Julia (Release)
118130 run : |
119131 ./.github/scripts/ci-build.sh release ${{ inputs.gc_plan }} ${{ inputs.moving }}
132+ - name : Print Julia version info
133+ run : |
134+ JULIA_PATH=$(realpath $(dirname "$0"))/../mmtk-julia/mmtk-julia/vm/julia
135+ $JULIA_PATH/julia --project=. -e "using InteractiveUtils; versioninfo()"
120136 - name : Test Julia
121137 run : |
122138 ./.github/scripts/ci-test-stdlib.sh
@@ -136,6 +152,10 @@ jobs:
136152 - name : Build Julia (Release)
137153 run : |
138154 ./.github/scripts/ci-build.sh release ${{ inputs.gc_plan }} ${{ inputs.moving }}
155+ - name : Print Julia version info
156+ run : |
157+ JULIA_PATH=$(realpath $(dirname "$0"))/../mmtk-julia/mmtk-julia/vm/julia
158+ $JULIA_PATH/julia --project=. -e "using InteractiveUtils; versioninfo()"
139159 - name : Test Julia
140160 run : |
141161 ./.github/scripts/ci-test-LinearAlgebra.sh
0 commit comments