Skip to content

Commit cc28492

Browse files
committed
Fixed workflow for Ubuntu automated builds
1 parent d35d269 commit cc28492

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: .github/workflows/remoteBuild.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ jobs:
5959
components: clippy
6060
- name: Install LLVM and dependencies (Windows)
6161
if: ${{ matrix.os == 'windows-latest' }}
62-
shell: bash
6362
run: |
6463
C:\msys64\usr\bin\pacman -S mingw-w64-x86_64-gcc --noconfirm
6564
C:\msys64\usr\bin\pacman -S mingw-w64-x86_64-llvm --noconfirm
@@ -74,7 +73,7 @@ jobs:
7473
if: ${{ matrix.os == 'ubuntu-latest' }}
7574
run: |
7675
sudo apt-get update
77-
sudo apt-get remove -y llvm-13
76+
sudo apt-get remove -y llvm
7877
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
7978
brew install llvm@18
8079
brew install zstd
@@ -91,6 +90,7 @@ jobs:
9190
ZLIB_INCLUDE_DIR: C:\msys64\mingw64\include
9291
ZLIB_LIBRARY: C:\msys64\mingw64\lib\libz.a
9392
- name: Build (macOS)
93+
if: ${{ matrix.os == 'macos-latest' }}
9494
run: |
9595
cargo build --release
9696
env:
@@ -100,8 +100,8 @@ jobs:
100100
CFLAGS: -static-libstdc++
101101
CXXFLAGS: -static-libstdc++
102102
LDFLAGS: /opt/homebrew/opt/llvm/lib/libunwind.a
103-
- name: Build (Linux)
104-
if: ${{ matrix.os == 'linux-latest' }}
103+
- name: Build (Ubuntu)
104+
if: ${{ matrix.os == 'ubuntu-latest' }}
105105
run: |
106106
cargo build --release
107107
env:

0 commit comments

Comments
 (0)