Skip to content

Commit c8059eb

Browse files
committed
Merge branch 'main' into khook
2 parents 8c8d52f + 7eb5abe commit c8059eb

227 files changed

Lines changed: 5961 additions & 698879 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,14 @@ jobs:
6161
run: |
6262
cd ambuild && python setup.py install && cd ..
6363
64-
- name: Install Clang 16
64+
- name: Install Clang 21
6565
if: matrix.os == 'ubuntu-latest'
6666
run: |
67-
apt update && apt install -y clang-16
68-
ln -sf /usr/bin/clang-16 /usr/bin/clang && ln -sf /usr/bin/clang++-16 /usr/bin/clang++
67+
echo "deb http://apt.llvm.org/bullseye/ llvm-toolchain-bullseye-21 main" >> /etc/apt/sources.list.d/llvm.list
68+
echo "deb-src http://apt.llvm.org/bullseye/ llvm-toolchain-bullseye-21 main" >> /etc/apt/sources.list.d/llvm.list
69+
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
70+
apt update && apt install -y clang-21
71+
ln -sf /usr/bin/clang-21 /usr/bin/clang && ln -sf /usr/bin/clang++-21 /usr/bin/clang++
6972
7073
- name: Build
7174
working-directory: CS2Fixes
@@ -79,7 +82,7 @@ jobs:
7982
uses: actions/upload-artifact@v4
8083
with:
8184
name: ${{ runner.os }}
82-
path: CS2Fixes/build/package
85+
path: CS2Fixes/build/package/cs2
8386

8487
release:
8588
name: Release

0 commit comments

Comments
 (0)