Skip to content

Commit 46ba5ee

Browse files
committed
idk why it's not working yet... works locally...
1 parent b600397 commit 46ba5ee

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111

1212
jobs:
1313
build-linux-x64:
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4
1717
with:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111

1212
jobs:
1313
build-linux-x86:
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4
1717
with:

docker/ubuntu_18.04-x64/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ RUN \
2020
make \
2121
python3-pip \
2222
libz-dev \
23+
zlib1g-dev \
2324
&& \
2425
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 30 && \
2526
update-alternatives --set cc /usr/bin/gcc && \

docker/ubuntu_18.04-x86/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ RUN \
2020
make \
2121
python3-pip \
2222
libz-dev \
23+
zlib1g-dev \
2324
&& \
2425
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 30 && \
2526
update-alternatives --set cc /usr/bin/gcc && \

0 commit comments

Comments
 (0)