File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 17
17
18
18
workflow_dispatch :
19
19
20
- # Defaults
21
20
env :
22
21
TEST_SCRIPT : ./build.sh
23
22
29
28
- name : Check out sources
30
29
uses : actions/checkout@v3
31
30
- name : Prepare container
32
- run : ./scripts/prepare-container.sh
31
+ run : ./scripts/prepare-container-bionic .sh
33
32
- run : bundle install
34
33
- run : bundle exec danger || true
35
34
- run : BML_OPENMP=no EMACS=emacs27 ./build.sh --debug check_indent
48
47
- name : Check out sources
49
48
uses : actions/checkout@v3
50
49
- name : Prepare container
51
- run : ./scripts/prepare-container.sh
50
+ run : ./scripts/prepare-container-bionic .sh
52
51
- name : Build docs
53
52
run : ./build.sh --debug docs
54
53
@@ -162,7 +161,7 @@ jobs:
162
161
with :
163
162
fetch-depth : 0
164
163
- name : Prepare container
165
- run : ./scripts/prepare-container.sh
164
+ run : ./scripts/prepare-container-bionic .sh
166
165
- name : Build and test library
167
166
env :
168
167
BLAS_VENDOR : ${{ matrix.BLAS_VENDOR || env.BLAS_VENDOR }}
Original file line number Diff line number Diff line change 1
1
FROM ubuntu:bionic
2
2
LABEL org.opencontainers.image.authors="
[email protected] "
3
3
4
- COPY scripts/prepare-container.sh /usr/sbin
5
- RUN /usr/sbin/prepare-container.sh
4
+ COPY scripts/prepare-container-bionic .sh /usr/sbin
5
+ RUN /usr/sbin/prepare-container-bionic .sh
6
6
7
7
WORKDIR /root
File renamed without changes.
You can’t perform that action at this time.
0 commit comments