Skip to content

Commit 78be794

Browse files
committed
[DEBUG] track LD_LIBRARY_PATH to see if Julia breaks it
1 parent 79185bd commit 78be794

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/CI.yml

+12
Original file line numberDiff line numberDiff line change
@@ -175,11 +175,17 @@ jobs:
175175
176176
# RMG build step
177177
- run: make install
178+
179+
- name: LD_LIBRARY_PATH check
180+
run: echo $LD_LIBRARY_PATH
178181

179182
- name: Setup Juliaup
180183
uses: julia-actions/install-juliaup@v2
181184
with:
182185
channel: '1.9'
186+
187+
- name: LD_LIBRARY_PATH check
188+
run: echo $LD_LIBRARY_PATH
183189

184190
- name: Set some env vars
185191
run: |
@@ -191,6 +197,9 @@ jobs:
191197
- name: Install and link Julia dependencies
192198
timeout-minutes: 120 # this usually takes 20-45 minutes (or hangs for 6+ hours).
193199
run: . install_rms.sh
200+
201+
- name: LD_LIBRARY_PATH check
202+
run: echo $LD_LIBRARY_PATH
194203

195204
- name: Set some other env vars
196205
run: |
@@ -272,6 +281,9 @@ jobs:
272281
github-token: ${{ secrets.GITHUB_TOKEN }}
273282
name: stable_regression_results
274283
path: stable_regression_results
284+
285+
- name: LD_LIBRARY_PATH check
286+
run: echo $LD_LIBRARY_PATH
275287

276288
# Regression Testing - Actual Comparisons
277289
- name: Regression Tests - Compare to Baseline

0 commit comments

Comments
 (0)