Skip to content

Commit e58cf9f

Browse files
committed
Fixed clang++-11 and clang++-14 compiler names, attempt to properly install docker
1 parent 289e380 commit e58cf9f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
os: ubuntu-22.04
3232
COMPILER_INSTALL: clang-11 libc++-11-dev
3333
C_COMPILER: clang-11
34-
CXX_COMPILER: clang++11
34+
CXX_COMPILER: clang++-11
3535

3636
- compiler: clang-14
3737
os: ubuntu-24.04
3838
COMPILER_INSTALL: clang-14 libc++-14-dev
3939
C_COMPILER: clang-14
40-
CXX_COMPILER: clang++14
40+
CXX_COMPILER: clang++-14
4141

4242
- compiler: clang-18
4343
os: ubuntu-24.04
@@ -87,9 +87,8 @@ jobs:
8787

8888
- name: Install dependencies
8989
run: |
90-
sudo apt-get update && \
90+
sudo apt-get update
9191
sudo apt-get install -y \
92-
docker \
9392
cmake \
9493
${{matrix.COMPILER_INSTALL}} \
9594
${{matrix.DEPENDENCIES_INSTALL}}
@@ -102,6 +101,7 @@ jobs:
102101
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
103102
sudo apt update -q
104103
sudo apt install docker-ce docker-ce-cli containerd.io
104+
sudo docker run hello-world
105105
106106
- name: Configure project
107107
run: |

0 commit comments

Comments
 (0)