Skip to content

Commit 6aeab31

Browse files
committed
[workflows] Fix GitHub action bugs
1. The Ubuntu version in pre-compile_llvm.yml should have been updated to 22.04. 2. UbuntuDockerfile should install python3-openssl instead of python-openssl. The latter no longer exists in 22.04.
1 parent e698fc8 commit 6aeab31

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/UbuntuDockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RUN apt --fix-missing update && \
3434
libssl-dev zlib1g-dev \
3535
libbz2-dev libreadline-dev libsqlite3-dev libncurses5-dev && \
3636
apt install -y python3-distutils python3-psutil \
37-
libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev python-openssl
37+
libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev python3-openssl
3838

3939
RUN cd /opt && \
4040
wget https://github.com/Kitware/CMake/releases/download/v3.20.0/cmake-3.20.0-linux-aarch64.sh && \

.github/workflows/pre-compile_llvm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
build:
1111
name: Ubuntu Linux
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313
strategy:
1414
matrix:
1515
target: [X86]

0 commit comments

Comments
 (0)