File tree 1 file changed +12
-2
lines changed
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -54,12 +54,13 @@ jobs:
54
54
sudo apt-get install -y --no-install-recommends perl
55
55
56
56
- 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.
57
58
run : |
58
59
sudo apt-get update -y
59
60
sudo apt-get install -y --no-install-recommends wget make gcc libx11-dev libc6-dev
60
61
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
63
64
mkdir xpp
64
65
tar zxvf xppaut_latest.tar.gz --directory xpp
65
66
cd xpp
@@ -117,6 +118,8 @@ jobs:
117
118
run : |
118
119
python -m pip install git+https://github.com/biosimulators/RBApy.git#egg=rbapy
119
120
python -m pip install -e .[all]
121
+ python --version
122
+ python -m pip freeze
120
123
121
124
- name : Login into Docker registries
122
125
run : |
@@ -158,6 +161,13 @@ jobs:
158
161
working-directory : ${{ github.workspace }}
159
162
run : python -c "from biosimulators_test_suite.exec_gh_action import ValidateCommitSimulatorGitHubAction; ValidateCommitSimulatorGitHubAction().run(); exit();"
160
163
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
+
161
171
- name : Save test results
162
172
uses : actions/upload-artifact@v2
163
173
if : success() || failure()
You can’t perform that action at this time.
0 commit comments