forked from mixxxdj/mixxx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into feat/store-tracklis…
…t-as-comment
- Loading branch information
Showing
790 changed files
with
51,120 additions
and
40,987 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
filter=-linelength,-convention/filename,-package/stdargs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
indent: 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ updates: | |
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
target-branch: "2.5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,11 +21,17 @@ jobs: | |
- name: clazy | ||
- name: clang-tidy | ||
- name: coverage | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
name: ${{ matrix.name }} | ||
steps: | ||
- name: Check out repository | ||
uses: actions/[email protected] | ||
uses: actions/[email protected] | ||
- name: Add clazy PPA | ||
if: matrix.name == 'clazy' | ||
# Ubuntu2404 comes with v1.11, which is too old for the Qt6.4 shipped with Ubuntu 24.04 | ||
run: | | ||
sudo add-apt-repository ppa:daschuer/clazy | ||
sudo apt update | ||
- name: Install build dependencies | ||
run: tools/debian_buildenv.sh setup | ||
- name: Create build directory | ||
|
@@ -34,6 +40,7 @@ jobs: | |
if: matrix.name == 'clazy' | ||
# Disable optimizations as workaround for Clang 9 bug: https://bugs.llvm.org/show_bug.cgi?id=45034 | ||
run: | | ||
clazy --version | ||
cmake \ | ||
-DCMAKE_BUILD_TYPE=Debug \ | ||
-DWARNINGS_FATAL=ON \ | ||
|
@@ -61,6 +68,8 @@ jobs: | |
CXX: clazy | ||
- name: Configure (clang-tidy) | ||
if: matrix.name == 'clang-tidy' | ||
# Our code contains the use of infinity(), which Clang >= 18 reports | ||
# as error, if you compile with -fast-math | ||
run: | | ||
cmake \ | ||
-DCMAKE_BUILD_TYPE=Debug \ | ||
|
@@ -81,6 +90,7 @@ jobs: | |
-DMAD=ON \ | ||
-DMODPLUG=ON \ | ||
-DWAVPACK=ON \ | ||
-DCMAKE_CXX_FLAGS="-Wno-nan-infinity-disabled" \ | ||
.. | ||
working-directory: build | ||
env: | ||
|
@@ -116,13 +126,6 @@ jobs: | |
working-directory: build | ||
- name: Set up problem matcher | ||
uses: ammaraskar/[email protected] | ||
# Work around https://github.com/actions/runner-images/issues/8659 | ||
- name: "Remove GCC 13 from runner image (workaround)" | ||
shell: bash | ||
run: | | ||
sudo rm -f /etc/apt/sources.list.d/ubuntu-toolchain-r-ubuntu-test-jammy.list | ||
sudo apt-get update | ||
sudo apt-get install -y --allow-downgrades libc6=2.35* libc6-dev=2.35* libstdc++6=12.3.0-1ubuntu1~22.04 libgcc-s1=12.3.0-1ubuntu1~22.04 | ||
- name: Build | ||
# Do not abort on errors and build/check the whole project | ||
run: cmake --build . -j $(nproc) -- --keep-going | ||
|
@@ -157,8 +160,8 @@ jobs: | |
- name: "Upload Coverage Report to coveralls.io" | ||
if: matrix.name == 'coverage' | ||
continue-on-error: true | ||
uses: coverallsapp/[email protected].0 | ||
uses: coverallsapp/[email protected].6 | ||
with: | ||
flag-name: ubuntu-22.04 | ||
flag-name: ubuntu-24.04 | ||
path-to-lcov: build/lcov.info | ||
github-token: ${{ secrets.GITHUB_TOKEN }} |
Oops, something went wrong.