Skip to content

Commit e3733fc

Browse files
committed
Renamed default image to Bionic
In preparation for image upgrade to Focal. Signed-off-by: Nicolas Bock <[email protected]>
1 parent ac38ab5 commit e3733fc

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/CI.yaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ on:
1717

1818
workflow_dispatch:
1919

20-
# Defaults
2120
env:
2221
TEST_SCRIPT: ./build.sh
2322

@@ -29,7 +28,7 @@ jobs:
2928
- name: Check out sources
3029
uses: actions/checkout@v3
3130
- name: Prepare container
32-
run: ./scripts/prepare-container.sh
31+
run: ./scripts/prepare-container-bionic.sh
3332
- run: bundle install
3433
- run: bundle exec danger || true
3534
- run: BML_OPENMP=no EMACS=emacs27 ./build.sh --debug check_indent
@@ -48,7 +47,7 @@ jobs:
4847
- name: Check out sources
4948
uses: actions/checkout@v3
5049
- name: Prepare container
51-
run: ./scripts/prepare-container.sh
50+
run: ./scripts/prepare-container-bionic.sh
5251
- name: Build docs
5352
run: ./build.sh --debug docs
5453

@@ -162,7 +161,7 @@ jobs:
162161
with:
163162
fetch-depth: 0
164163
- name: Prepare container
165-
run: ./scripts/prepare-container.sh
164+
run: ./scripts/prepare-container-bionic.sh
166165
- name: Build and test library
167166
env:
168167
BLAS_VENDOR: ${{ matrix.BLAS_VENDOR || env.BLAS_VENDOR }}

Dockerfile-bionic

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM ubuntu:bionic
22
LABEL org.opencontainers.image.authors="[email protected]"
33

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
66

77
WORKDIR /root
File renamed without changes.

0 commit comments

Comments
 (0)