File tree Expand file tree Collapse file tree 2 files changed +17
-11
lines changed Expand file tree Collapse file tree 2 files changed +17
-11
lines changed Original file line number Diff line number Diff line change @@ -35,33 +35,39 @@ jobs:
35
35
variant : sccache
36
36
key : ${{ github.job }}-${{ matrix.os }}
37
37
38
+ - name : Print installed packages information
39
+ shell : bash -e -x -l {0}
40
+ run : |
41
+ which lpython
42
+ micromamba env list
43
+ micromamba activate lp
44
+ which lpython
45
+
38
46
- name : Clone LPython Source Repository
39
- shell : bash -e -l {0}
47
+ shell : bash -e -x - l {0}
40
48
run : |
41
49
git clone https://github.com/lcompilers/lpython.git
50
+ cd lpython
42
51
git fetch https://github.com/lcompilers/lpython.git --tags -f
43
52
git checkout v0.20.0
44
53
45
- - name : Run LPython Ctest
46
- shell : bash -e -l {0}
47
- run : |
48
- cd lpython
49
- ctest
50
-
51
54
- name : Run LPython Integration Tests
52
- shell : bash -e -l {0}
55
+ if : ${{ !startsWith(matrix.os, 'windows-2019') }}
56
+ shell : bash -e -x -l {0}
53
57
run : |
54
58
cd lpython/integration_tests
55
59
./run_tests.py -b llvm c wasm
56
60
57
61
- name : Run LPython Fast Integration Tests
58
- shell : bash -e -l {0}
62
+ if : ${{ !startsWith(matrix.os, 'windows-2019') }}
63
+ shell : bash -e -x -l {0}
59
64
run : |
60
65
cd lpython/integration_tests
61
66
./run_tests.py -b llvm c wasm -f
62
67
63
68
- name : Run LPython Reference Tests
64
- shell : bash -e -l {0}
69
+ if : ${{ !startsWith(matrix.os, 'windows-2019') }}
70
+ shell : bash -e -x -l {0}
65
71
run : |
66
72
cd lpython
67
73
./run_tests.py --skip-run-with-dbg
Original file line number Diff line number Diff line change 1
- name : lf
1
+ name : lp
2
2
channels :
3
3
- conda-forge
4
4
dependencies :
You can’t perform that action at this time.
0 commit comments