File tree Expand file tree Collapse file tree 4 files changed +45
-5
lines changed Expand file tree Collapse file tree 4 files changed +45
-5
lines changed Original file line number Diff line number Diff line change 13
13
runs-on : ubuntu-latest
14
14
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v3
17
17
- name : Build the Docker image
18
18
run : |
19
19
chmod a+w output/
Original file line number Diff line number Diff line change 13
13
runs-on : ubuntu-latest
14
14
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v3
17
17
- name : Build the Docker image
18
18
run : |
19
19
chmod a+w output/
Original file line number Diff line number Diff line change
1
+ name : Docker Pull Test
2
+
3
+ on :
4
+ push :
5
+ branches : [ master, dev* ]
6
+ pull_request :
7
+ branches : [ master, dev* ]
8
+
9
+ jobs :
10
+
11
+ build :
12
+
13
+ runs-on : ubuntu-latest
14
+
15
+ steps :
16
+ - uses : actions/checkout@v3
17
+
18
+ - name : Run the Docker image
19
+ run : |
20
+ # Don't build. Will be pulled when run below
21
+ ./run.sh
22
+
23
+ - name : Info on Docker images
24
+ run : |
25
+ docker -v
26
+ docker images
27
+
28
+ - name : Run the Docker image - no c302
29
+ run : |
30
+ # Shouldn't need to pull again.
31
+ ./stop.sh
32
+ ./run-quick.sh
33
+
34
+ - name : Info on Docker images
35
+ run : |
36
+ docker -v
37
+ docker images
38
+
39
+ - name : Info on generated files
40
+ run : |
41
+ ls -alt
42
+ ls -alt output
43
+ ls -alt output/*
Original file line number Diff line number Diff line change @@ -90,9 +90,6 @@ RUN git clone https://github.com/openworm/sibernetic.git && \
90
90
# ###############################################################################
91
91
# ####### Set some paths//environment variables
92
92
93
- ENV JNML_HOME=$HOME/jNeuroML
94
- ENV PATH=$PATH:$JNML_HOME
95
-
96
93
ENV C302_HOME=$HOME/c302/c302
97
94
ENV SIBERNETIC_HOME=$HOME/sibernetic
98
95
ENV PYTHONPATH=$PYTHONPATH:$HOME/c302:$SIBERNETIC_HOME
You can’t perform that action at this time.
0 commit comments