File tree 4 files changed +15
-6
lines changed
4 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 36
36
exclude :
37
37
- os : macOS-latest
38
38
version : ' 1.10'
39
+ env :
40
+ TMPDIR : ${{ github.workspace }}/tmp
39
41
steps :
40
42
- uses : actions/checkout@v4
43
+ - name : Create TMPDIR
44
+ run : |
45
+ mkdir -p ${{ env.TMPDIR }}
41
46
- uses : julia-actions/setup-julia@v2
42
47
with :
43
48
version : ${{ matrix.version }}
Original file line number Diff line number Diff line change 86
86
# libReactant: packaged
87
87
# version: '1.10'
88
88
# test_group: integration
89
+ env :
90
+ TMPDIR : ${{ github.workspace }}/tmp
89
91
steps :
90
92
- uses : actions/checkout@v4
93
+ - name : Create TMPDIR
94
+ run : |
95
+ mkdir -p ${{ env.TMPDIR }}
91
96
- uses : julia-actions/setup-julia@v2
92
97
if : ${{ ! matrix.assertions }}
93
98
with :
Original file line number Diff line number Diff line change 41
41
runtime :
42
42
- PJRT
43
43
- IFRT
44
+ env :
45
+ TMPDIR : ${{ github.workspace }}/tmp
44
46
steps :
45
47
- uses : actions/checkout@v4
48
+ - name : Create TMPDIR
49
+ run : |
50
+ mkdir -p ${{ env.TMPDIR }}
46
51
- uses : julia-actions/setup-julia@v2
47
52
with :
48
53
version : " 1.10"
Original file line number Diff line number Diff line change 1
1
using Reactant, SafeTestsets, Test
2
2
3
- # If we are in GitHub Actions, make `TMPDIR` be a local directory from which we
4
- # can upload artifacts at the end.
5
- if get (ENV , " GITHUB_ACTIONS" , " false" ) == " true"
6
- Reactant. MLIR. IR. DUMP_MLIR_DIR[] = mkpath (joinpath (@__DIR__ , " .." , " mlir_modules" ))
7
- end
8
-
9
3
# parse some command-line arguments
10
4
function extract_flag! (args, flag, default= nothing ; typ= typeof (default))
11
5
for f in args
You can’t perform that action at this time.
0 commit comments