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
4 changes: 2 additions & 2 deletions .github/workflows/ci_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- name: Clone repository
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Upload artifacts on GitHub
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.GITHUB_ARTIFACT_NAME }}
path: ./build.artifacts/
8 changes: 4 additions & 4 deletions .github/workflows/ci_linux_arm_mu4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- name: Clone repository (default)
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
sudo bash ./build/ci/tools/osuosl/publish.sh -s ${{ secrets.OSUOSL_SSH_ENCRYPT_SECRET }} --os linux --arch armv7l -v 4
- name: Upload artifacts on GitHub
if: env.DO_BUILD == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.UPLOAD_ARTIFACT_NAME }}
path: ./build.artifacts/
Expand All @@ -153,7 +153,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- name: Clone repository (default)
Expand Down Expand Up @@ -263,7 +263,7 @@ jobs:
sudo bash ./build/ci/tools/osuosl/publish.sh -s ${{ secrets.OSUOSL_SSH_ENCRYPT_SECRET }} --os linux --arch aarch64 -v 4
- name: Upload artifacts on GitHub
if: env.DO_BUILD == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.UPLOAD_ARTIFACT_NAME }}
path: ./build.artifacts/
6 changes: 3 additions & 3 deletions .github/workflows/ci_linux_mu3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- name: Clone repository (default)
Expand All @@ -37,7 +37,7 @@ jobs:
NOW=$(date -u +"%F-%T")
echo "timestamp=${NOW}" >> $GITHUB_OUTPUT
- name: Ccache cache files
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.ccache
key: ${{github.workflow}}-ccache-${{steps.ccache_cache_timestamp.outputs.timestamp}}
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
sudo bash ./build/ci/tools/osuosl/publish.sh -s ${{ secrets.OSUOSL_SSH_ENCRYPT_SECRET }} --os linux -v $VER
- name: Upload artifacts on GitHub
if: env.DO_BUILD == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: MuseScore_${{ github.run_id }}
path: ./build.artifacts/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci_linux_mu4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- name: Clone repository (default)
Expand All @@ -44,7 +44,7 @@ jobs:
with:
ref: ${{ env.CURRENT_RELEASE_BRANCH }}
- name: Ccache cache files
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.ccache
key: ${{github.workflow}}-ccache-$(date -u +"%F-%T")
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
sudo bash ./build/ci/tools/osuosl/publish.sh -s ${{ secrets.OSUOSL_SSH_ENCRYPT_SECRET }} --os linux -v 4
- name: Upload artifacts on GitHub
if: env.DO_BUILD == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.UPLOAD_ARTIFACT_NAME }}
path: ./build.artifacts/
12 changes: 6 additions & 6 deletions .github/workflows/ci_lupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,18 +64,18 @@ jobs:

- name: Setup environment
run: |
sudo bash ./build/ci/translation/qt_install.sh
bash ./build/ci/translation/qt_install.sh
- name: Run lupdate
run: |
sudo bash ./build/ci/translation/run_lupdate.sh
bash ./build/ci/translation/run_lupdate.sh
- name: Publish to Transifex
if: env.DO_PUBLISH == 'true'
run: |
sudo bash ./build/ci/translation/tx_install.sh -t ${{ secrets.TRANSIFEX_API_TOKEN }} -s linux
sudo bash ./build/ci/translation/tx_push.sh
bash ./build/ci/translation/tx_install.sh -t ${{ secrets.TRANSIFEX_API_TOKEN }} -s linux
bash ./build/ci/translation/tx_push.sh
- name: Create Pull Request
if: env.DO_CREATE_PR == 'true'
uses: peter-evans/create-pull-request@v5
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Run lupdate"
Expand All @@ -86,7 +86,7 @@ jobs:
labels: strings
reviewers: cbjeukendrup
- name: Upload artifacts on GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: MuseScore_tsfiles_${{ env.BUILD_NUMBER }}
path: ./share/locale
4 changes: 2 additions & 2 deletions .github/workflows/ci_macos_mu3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: macos-10.15
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- name: Clone repository (default)
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
bash ./build/ci/tools/sparkle_appcast_gen.sh -p macos
- name: Upload artifacts on GitHub
if: env.DO_BUILD == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: MuseScore_${{ github.run_id }}
path: ./build.artifacts/
6 changes: 3 additions & 3 deletions .github/workflows/ci_macos_mu4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
runs-on: macos-13
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- name: Clone repository (default)
Expand All @@ -45,7 +45,7 @@ jobs:
with:
ref: ${{ env.CURRENT_RELEASE_BRANCH }}
- name: Ccache cache files
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.ccache
key: ${{github.workflow}}-ccache-$(date -u +"%F-%T")
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
bash ./build/ci/tools/sparkle_appcast_gen.sh -p macos
- name: Upload artifacts on GitHub
if: env.DO_BUILD == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.UPLOAD_ARTIFACT_NAME }}
path: ./build.artifacts/
2 changes: 1 addition & 1 deletion .github/workflows/ci_tx2s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:

- name: Upload artifacts on GitHub
if: env.DO_RUN == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: MuseScore_locale_${{ env.BUILD_NUMBER }}
path: ./share/locale
4 changes: 2 additions & 2 deletions .github/workflows/ci_utests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- name: Clone repository
Expand All @@ -25,7 +25,7 @@ jobs:
echo "BUILD_NUMBER=$BUILD_NUMBER" >> $GITHUB_ENV
echo "BUILD_NUMBER: $BUILD_NUMBER"
- name: Ccache cache files
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.ccache
key: ${{github.workflow}}-ccache-$(date -u +"%F-%T")
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci_vtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
artifact_name: ${{ steps.output_data.outputs.artifact_name }}
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- name: Clone repository
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Clone repository
uses: actions/checkout@v4
- name: Ccache cache files
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.ccache
key: ${{github.workflow}}-ccache-$(date -u +"%F-%T")
Expand All @@ -83,7 +83,7 @@ jobs:
run: |
bash ./build/ci/vtests/build_and_pack.sh
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: current_build
path: ./build.artifacts/
Expand All @@ -99,7 +99,7 @@ jobs:
with:
ref: ${{ needs.setup.outputs.reference_sha }}
- name: Ccache cache files
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.ccache
key: ${{github.workflow}}-ccache-$(date -u +"%F-%T")
Expand All @@ -114,7 +114,7 @@ jobs:
run: |
bash ./build/ci/vtests/build_and_pack.sh
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: reference_build
path: ./build.artifacts/
Expand All @@ -128,12 +128,12 @@ jobs:
- name: Clone repository
uses: actions/checkout@v4
- name: Download current
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: current_build
path: ./musescore_current
- name: Download reference
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: reference_build
path: ./musescore_reference
Expand All @@ -148,7 +148,7 @@ jobs:
./vtest/vtest-compare-pngs.sh --ci 1
- name: Upload comparison
if: env.VTEST_DIFF_FOUND == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ needs.setup.outputs.artifact_name }}
path: ./comparison
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_windows_mu3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: windows-2019
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- name: Clone repository (default)
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
bash ./build/ci/tools/sparkle_appcast_gen.sh -p windows
- name: Upload artifacts on GitHub
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: MuseScore_x64_${{ github.run_id }}
path: build.artifacts\
8 changes: 4 additions & 4 deletions .github/workflows/ci_windows_mu4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: windows-2022
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- name: Clone repository (default)
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
bash ./build/ci/tools/sparkle_appcast_gen.sh -p windows
- name: Upload artifacts on GitHub
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.UPLOAD_ARTIFACT_NAME }}
path: build.artifacts\
Expand All @@ -221,7 +221,7 @@ jobs:
runs-on: windows-2022
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- name: Clone repository (default)
Expand Down Expand Up @@ -339,7 +339,7 @@ jobs:
bash ./build/ci/tools/osuosl/publish.sh -s ${{ secrets.OSUOSL_SSH_ENCRYPT_SECRET }} --os windows -v 4 --arch x86_64-portable
- name: Upload artifacts on GitHub
if: env.DO_BUILD == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.UPLOAD_ARTIFACT_NAME }}
path: build.artifacts\
2 changes: 1 addition & 1 deletion .github/workflows/ci_withoutqt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- name: Clone repository
Expand Down