-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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 'mixxx/main' into nic/track-move-controls
- Loading branch information
Showing
417 changed files
with
12,977 additions
and
3,249 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
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
name: ${{ matrix.name }} | ||
steps: | ||
- name: Check out repository | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].6 | ||
- name: Install build dependencies | ||
run: tools/debian_buildenv.sh setup | ||
- name: Create build directory | ||
|
@@ -156,7 +156,7 @@ jobs: | |
- name: "Upload Coverage Report to coveralls.io" | ||
if: matrix.name == 'coverage' | ||
continue-on-error: true | ||
uses: coverallsapp/github-action@v2.2.3 | ||
uses: coverallsapp/github-action@v2.3.0 | ||
with: | ||
flag-name: ubuntu-22.04 | ||
path-to-lcov: build/lcov.info | ||
|
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 |
---|---|---|
|
@@ -48,8 +48,8 @@ jobs: | |
-DMODPLUG=ON | ||
-DQT6=ON | ||
-DWAVPACK=ON | ||
-DVCPKG_TARGET_TRIPLET=x64-osx-min1015-release | ||
-DVCPKG_DEFAULT_HOST_TRIPLET=x64-osx-min1015-release | ||
-DVCPKG_TARGET_TRIPLET=x64-osx-min1100-release | ||
-DVCPKG_DEFAULT_HOST_TRIPLET=x64-osx-min1100-release | ||
# TODO: Fix this broken test on macOS | ||
ctest_args: --exclude-regex DirectoryDAOTest.relocateDirectory | ||
cpack_generator: DragNDrop | ||
|
@@ -73,7 +73,7 @@ jobs: | |
-DQT6=ON | ||
-DWAVPACK=ON | ||
-DVCPKG_TARGET_TRIPLET=arm64-osx-min1100-release | ||
-DVCPKG_DEFAULT_HOST_TRIPLET=x64-osx-min1015-release | ||
-DVCPKG_DEFAULT_HOST_TRIPLET=x64-osx-min1100-release | ||
# TODO: Fix this broken test on macOS | ||
crosscompile: true | ||
cpack_generator: DragNDrop | ||
|
@@ -93,7 +93,7 @@ jobs: | |
# also adjust the for the local Windows build setup in | ||
# ./tools/windows_buildenv.bat | ||
cmake_args: >- | ||
-DBULK=OFF | ||
-DBULK=ON | ||
-DFFMPEG=OFF | ||
-DHSS1394=ON | ||
-DLOCALECOMPARE=ON | ||
|
@@ -131,7 +131,7 @@ jobs: | |
artifact-windows-win64: ${{ steps.prepare_deploy.outputs.artifact-windows-win64 }} | ||
steps: | ||
- name: "Check out repository" | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].6 | ||
with: | ||
# This is necessary for making `git describe` work. | ||
fetch-depth: 0 | ||
|
@@ -470,7 +470,7 @@ jobs: | |
- name: "Upload GitHub Actions artifacts" | ||
if: matrix.artifacts_path != null | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].3 | ||
with: | ||
name: ${{ matrix.artifacts_name }} | ||
path: ${{ matrix.artifacts_path }} | ||
|
@@ -481,10 +481,12 @@ jobs: | |
needs: build | ||
# Always run this job, even if one or more jobs from the `build` jobs | ||
# fail to allow partial updates of the manifest. | ||
if: always() | ||
# Don't run it on forks that do not have access to our external | ||
# infrastructure, though. | ||
if: always() && github.repository == 'mixxxdj/mixxx' | ||
steps: | ||
- name: "Check out repository" | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].6 | ||
with: | ||
fetch-depth: 0 | ||
|
||
|
Large diffs are not rendered by default.
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 |
---|---|---|
|
@@ -7,6 +7,6 @@ jobs: | |
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].6 | ||
- name: Block Fixup Commit Merge | ||
uses: 13rac1/[email protected] |
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
container: holzhaus/mixxx-ci:20220930 | ||
steps: | ||
- name: "Check out repository" | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].6 | ||
with: | ||
# Unfortunately we need the whole history and can't use a shallow clone | ||
# because the Appstream Metadata hook parses the history to find the | ||
|
@@ -67,14 +67,14 @@ jobs: | |
|
||
- name: "Upload patch artifact" | ||
if: failure() && env.UPLOAD_PATCH_FILE != null | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].3 | ||
with: | ||
name: ${{ env.UPLOAD_PATCH_FILE }} | ||
path: ${{ env.UPLOAD_PATCH_FILE }} | ||
|
||
- name: "Upload pre-commit.log" | ||
if: failure() && env.UPLOAD_PATCH_FILE == null | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].3 | ||
with: | ||
name: pre-commit.log | ||
path: /github/home/.cache/pre-commit/pre-commit.log | ||
|
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 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
Oops, something went wrong.