Skip to content

Commit

Permalink
CI: Use Pythonic release in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cbm755 committed Jul 24, 2023
1 parent b7187ad commit 4d26bfb
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,6 @@ jobs:
# Built-in Self Tests and Doctests using the Pythonic interface
# Currently, we only test with newer Octave and SymPy since the support for
# the Pythonic interface is experimental. We may change this in the future.
# For Pythonic, we use the latest commit from the master branch since the
# last release (0.0.1) no longer works with newer Python.
pythonic-bist-doctest:
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -144,12 +142,12 @@ jobs:
docker exec oc pip3 install packaging
docker exec oc pip3 install sympy=="$SYMPY"
docker exec oc octave-cli --eval "pkg install -forge doctest"
docker exec oc octave-cli --eval "pwd; ls"
docker exec oc \
git clone https://gitlab.com/gnu-octave/octave-pythonic.git
docker exec oc \
tar cvzf octave-pythonic.tar.gz --exclude='.git*' octave-pythonic
docker exec oc octave-cli --eval "pkg install octave-pythonic.tar.gz"
docker exec oc octave-cli --eval "pkg install -forge pythonic"
# docker exec oc \
# git clone https://gitlab.com/gnu-octave/octave-pythonic.git
# docker exec oc \
# tar cvzf octave-pythonic.tar.gz --exclude='.git*' octave-pythonic
# docker exec oc octave-cli --eval "pkg install octave-pythonic.tar.gz"
- name: Run BIST
run: |
docker exec oc make -C /workdir/octsympy install
Expand Down

0 comments on commit 4d26bfb

Please sign in to comment.