Skip to content

Commit 7a68471

Browse files
committed
Merge branch 'dev' into dependabot/pip/Dockerfile-assets/notebook-6.4.10
2 parents ff17acb + 013a938 commit 7a68471

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/validateCommitSimulator.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,13 @@ jobs:
5454
sudo apt-get install -y --no-install-recommends perl
5555
5656
- name: Install XPP
57+
# wget http://www.math.pitt.edu/~bard/bardware/xppaut_latest.tar.gz # math.pitt.edu went down, using an internet archive temporarily.
5758
run: |
5859
sudo apt-get update -y
5960
sudo apt-get install -y --no-install-recommends wget make gcc libx11-dev libc6-dev
6061
61-
cd /tmp
62-
wget http://www.math.pitt.edu/~bard/bardware/xppaut_latest.tar.gz
62+
cd /tmp
63+
wget https://web.archive.org/web/20210425172021/http://www.math.pitt.edu/~bard/bardware/xppaut_latest.tar.gz
6364
mkdir xpp
6465
tar zxvf xppaut_latest.tar.gz --directory xpp
6566
cd xpp
@@ -117,6 +118,8 @@ jobs:
117118
run: |
118119
python -m pip install git+https://github.com/biosimulators/RBApy.git#egg=rbapy
119120
python -m pip install -e .[all]
121+
python --version
122+
python -m pip freeze
120123
121124
- name: Login into Docker registries
122125
run: |
@@ -158,6 +161,13 @@ jobs:
158161
working-directory: ${{ github.workspace }}
159162
run: python -c "from biosimulators_test_suite.exec_gh_action import ValidateCommitSimulatorGitHubAction; ValidateCommitSimulatorGitHubAction().run(); exit();"
160163

164+
- name: Setup tmate session 3 (if failed)
165+
uses: mxschmitt/action-tmate@v3
166+
if: ${{ failure() }}
167+
168+
- name: Setup tmate session 3
169+
uses: mxschmitt/action-tmate@v3
170+
161171
- name: Save test results
162172
uses: actions/upload-artifact@v2
163173
if: success() || failure()

0 commit comments

Comments
 (0)