mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-20 09:57:10 +00:00
fix: update CI to install libc++ and fix artifact path
This commit is contained in:
parent
5105f89648
commit
ec0a8af821
8
.github/workflows/build-linux.yml
vendored
8
.github/workflows/build-linux.yml
vendored
|
|
@ -34,7 +34,11 @@ jobs:
|
||||||
python -m pip install meson
|
python -m pip install meson
|
||||||
# Set a reasonable ccache size
|
# Set a reasonable ccache size
|
||||||
ccache -M 5G || true
|
ccache -M 5G || true
|
||||||
python -m pip install meson
|
|
||||||
|
- name: Install LLVM + libc++
|
||||||
|
run: |
|
||||||
|
wget -qO- https://apt.llvm.org/llvm.sh | sudo bash -s -- 20
|
||||||
|
sudo apt-get install -y libc++-20-dev libc++abi-20-dev
|
||||||
|
|
||||||
- name: Restore ccache
|
- name: Restore ccache
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
|
|
@ -75,5 +79,5 @@ jobs:
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: minecraft-client-linux-${{ github.sha }}
|
name: minecraft-client-linux-${{ github.sha }}
|
||||||
path: build/Minecraft.Client/Minecraft.Client
|
path: build/targets/app/Minecraft.Client
|
||||||
retention-days: 7
|
retention-days: 7
|
||||||
Loading…
Reference in a new issue