-
-
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 lib-add-dir-error
- Loading branch information
Showing
763 changed files
with
213,467 additions
and
245,512 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
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
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
- name: Get current branch name | ||
uses: nelonoel/[email protected] | ||
- name: Start workflow run on manual repository | ||
uses: peter-evans/repository-dispatch@v2 | ||
uses: peter-evans/repository-dispatch@v3 | ||
if: env.MIXXXBOT_TOKEN != null | ||
with: | ||
token: ${{ env.MIXXXBOT_TOKEN }} | ||
|
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,38 @@ | ||
name: Clean up downloads | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: "Set up SSH Agent" | ||
if: env.SSH_PRIVATE_KEY != null | ||
env: | ||
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | ||
SSH_PRIVATE_KEY: ${{ secrets.DOWNLOADS_HOSTGATOR_DOT_MIXXX_DOT_ORG_KEY }} | ||
SSH_HOST: downloads-hostgator.mixxx.org | ||
run: | | ||
ssh-agent -a $SSH_AUTH_SOCK > /dev/null | ||
ssh-add - <<< "${SSH_PRIVATE_KEY}" | ||
mkdir -p "${HOME}/.ssh" | ||
ssh-keyscan "${SSH_HOST}" >> "${HOME}/.ssh/known_hosts" | ||
echo "SSH_AUTH_SOCK=${SSH_AUTH_SOCK}" >> "${GITHUB_ENV}" | ||
- name: Delete obsolete files | ||
if: env.SSH_AUTH_SOCK != null | ||
run: | | ||
mkdir empty_folder | ||
echo 1.12 >> include_file.txt | ||
echo 1.12/manual >> include_file.txt | ||
echo 1.12/manual/* >> include_file.txt | ||
echo 1.12/manual/*/html >> include_file.txt | ||
echo 1.12/manual/*/html/* >> include_file.txt | ||
echo 1.12/manual/*/html/*/* >> include_file.txt | ||
rsync --verbose --archive --times --recursive --delete --include-from=include_file.txt --exclude=* "empty_folder/" "${SSH_USER}@${SSH_HOST}:${DESTDIR}/snapshots/" | ||
env: | ||
DESTDIR: public_html/downloads | ||
SSH_HOST: downloads-hostgator.mixxx.org | ||
SSH_USER: mixxx |
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,12 @@ | ||
name: Git Checks | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
block-fixup: | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- 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/checkout@v4 | ||
uses: actions/checkout@v4.1.1 | ||
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 | ||
|
@@ -38,7 +38,7 @@ jobs: | |
git config --global --list | ||
- name: "Detect code style issues (push)" | ||
uses: pre-commit/[email protected].0 | ||
uses: pre-commit/[email protected].1 | ||
if: github.event_name == 'push' | ||
# There are too many files in the repo that have formatting issues. We'll | ||
# disable these checks for now when pushing directly (but still run these | ||
|
@@ -47,7 +47,7 @@ jobs: | |
SKIP: clang-format,eslint,no-commit-to-branch | ||
|
||
- name: "Detect code style issues (pull_request)" | ||
uses: pre-commit/[email protected].0 | ||
uses: pre-commit/[email protected].1 | ||
if: github.event_name == 'pull_request' | ||
env: | ||
SKIP: no-commit-to-branch | ||
|
@@ -67,14 +67,14 @@ jobs: | |
|
||
- name: "Upload patch artifact" | ||
if: failure() && env.UPLOAD_PATCH_FILE != null | ||
uses: actions/upload-artifact@v4.0.0 | ||
uses: actions/upload-artifact@v4.3.1 | ||
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/upload-artifact@v4.0.0 | ||
uses: actions/upload-artifact@v4.3.1 | ||
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
Oops, something went wrong.