Skip to content

Commit 19614f3

Browse files
committed
use ubuntu 20 instead of 18, can't go lower anymore
1 parent 45cd1d3 commit 19614f3

File tree

8 files changed

+6
-6
lines changed

8 files changed

+6
-6
lines changed

.github/workflows/build-linux-x64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
run: |
2323
chmod -R 777 ./
2424
cd docker
25-
cd ubuntu_18.04-x64
25+
cd ubuntu_20.04-x64
2626
chmod +x ./build.sh
2727
chmod +x ./docker-entrypoint.sh
2828
./build.sh
2929
- name: Upload libnode.so.108 artifact
3030
uses: actions/upload-artifact@v4
3131
with:
3232
name: libnode.so.108-x64
33-
path: docker/ubuntu_18.04-x64/out/Release/libnode.so.108
33+
path: docker/ubuntu_20.04-x64/out/Release/libnode.so.108

.github/workflows/build-linux-x86.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
run: |
2525
chmod -R 777 ./
2626
cd docker
27-
cd ubuntu_18.04-x86
27+
cd ubuntu_20.04-x86
2828
chmod +x ./build.sh
2929
chmod +x ./docker-entrypoint.sh
3030
./build.sh
3131
- name: Upload libnode.so.108 artifact
3232
uses: actions/upload-artifact@v4
3333
with:
3434
name: libnode.so.108-x86
35-
path: docker/ubuntu_18.04-x86/out/Release/libnode.so.108
35+
path: docker/ubuntu_20.04-x86/out/Release/libnode.so.108
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:18.04
1+
FROM ubuntu:20.04
22
RUN \
33
# apt remove gcc && \
44
# apt remove g++ && \
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM i386/ubuntu:18.04
1+
FROM i386/ubuntu:20.04
22
RUN \
33
# apt remove gcc && \
44
# apt remove g++ && \
File renamed without changes.

0 commit comments

Comments
 (0)