Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ jobs:
# Use default cmake
- { compiler: gcc-14, os: ubuntu-24.04, type: Debug }
- { compiler: clang-18, os: ubuntu-24.04, type: Debug, externalSanitizer: true }
- { compiler: clang-21, os: ubuntu-latest, type: Debug, init_llvm: true}

runs-on: ${{matrix.os}}

Expand Down Expand Up @@ -146,7 +147,7 @@ jobs:
if: matrix.coverage
with:
submodules: true
fetch-depth: 0 # Faster checkout
fetch-depth: 0 # Full history

- name: Cache dependencies
uses: actions/cache@v4
Expand All @@ -172,8 +173,12 @@ jobs:
else
compiler=${{matrix.compiler}}
compiler=${compiler/gcc-/g++-}
sudo apt update
sudo apt install gettext libsdl2-dev libsdl2-mixer-dev libcurl4-openssl-dev libbz2-dev libminiupnpc-dev liblua5.2-dev $compiler
if [[ "${{matrix.init_llvm}}" == "true" ]]; then
clang_version=${compiler#clang-*}
wget -qO- "https://apt.llvm.org/llvm.sh" | sudo bash -s -- "${clang_version}"
fi
sudo apt-get -o Acquire::Retries=5 update
sudo apt-get -o Acquire::Retries=5 -y -q --no-install-suggests --no-install-recommends install gettext libsdl2-dev libsdl2-mixer-dev libcurl4-openssl-dev libbz2-dev libminiupnpc-dev liblua5.2-dev $compiler
fi

- name: Setup CCache
Expand Down
2 changes: 1 addition & 1 deletion external/languages
Submodule languages updated 1 files
+58 −53 rttr-de.po
2 changes: 1 addition & 1 deletion external/libutil
Loading