31
31
- name : Build Julia (Debug)
32
32
run : |
33
33
./.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()"
34
38
- name : Style check
35
39
run : |
36
40
./.github/scripts/ci-style.sh
52
56
- name : Build Julia (Debug)
53
57
run : |
54
58
./.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()"
55
63
- name : Style check
56
64
run : |
57
65
./.github/scripts/ci-style.sh
@@ -95,6 +103,10 @@ jobs:
95
103
- name : Build Julia (Release)
96
104
run : |
97
105
./.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()"
98
110
- name : Test Julia
99
111
run : |
100
112
./.github/scripts/ci-test-other.sh
@@ -117,6 +129,10 @@ jobs:
117
129
- name : Build Julia (Release)
118
130
run : |
119
131
./.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()"
120
136
- name : Test Julia
121
137
run : |
122
138
./.github/scripts/ci-test-stdlib.sh
@@ -136,6 +152,10 @@ jobs:
136
152
- name : Build Julia (Release)
137
153
run : |
138
154
./.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()"
139
159
- name : Test Julia
140
160
run : |
141
161
./.github/scripts/ci-test-LinearAlgebra.sh
0 commit comments