Skip to content

Commit

Permalink
Use -x option for bash
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaikh-Ubaid committed Oct 8, 2023
1 parent 54fe41b commit 473c49e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,37 +36,37 @@ jobs:
key: ${{ github.job }}-${{ matrix.os }}

- name: Print installed packages information
shell: bash -e -l {0}
shell: bash -e -x -l {0}
run: |
which lpython
micromamba env list
micromamba activate lp
which lpython
- name: Clone LPython Source Repository
shell: bash -e -l {0}
shell: bash -e -x -l {0}
run: |
git clone https://github.com/lcompilers/lpython.git
git fetch https://github.com/lcompilers/lpython.git --tags -f
git checkout v0.20.0
- name: Run LPython Integration Tests
if: ${{ !startsWith(matrix.os, 'windows-2019') }}
shell: bash -e -l {0}
shell: bash -e -x -l {0}
run: |
cd lpython/integration_tests
./run_tests.py -b llvm c wasm
- name: Run LPython Fast Integration Tests
if: ${{ !startsWith(matrix.os, 'windows-2019') }}
shell: bash -e -l {0}
shell: bash -e -x -l {0}
run: |
cd lpython/integration_tests
./run_tests.py -b llvm c wasm -f
- name: Run LPython Reference Tests
if: ${{ !startsWith(matrix.os, 'windows-2019') }}
shell: bash -e -l {0}
shell: bash -e -x -l {0}
run: |
cd lpython
./run_tests.py --skip-run-with-dbg

0 comments on commit 473c49e

Please sign in to comment.