ci: use actionlint and problem matchers (#4116)

This commit is contained in:
ReenigneArcher 2025-07-29 22:08:30 -04:00 committed by GitHub
commit 99cf9ac960
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 215 additions and 120 deletions

View file

@ -79,8 +79,8 @@ jobs:
--enable-x11 \
--enable-glx \
--enable-wayland \
--without-legacy # emgd, nvctrl, fglrx
make -j $(nproc)
--without-legacy
make -j "$(nproc)"
sudo make install
cd .. && rm -rf libva-*
@ -91,6 +91,7 @@ jobs:
COMMIT: ${{ inputs.release_commit }}
run: |
chmod +x ./scripts/linux_build.sh
echo "::add-matcher::.github/matchers/gcc.json"
./scripts/linux_build.sh \
--publisher-name='${{ github.repository_owner }}' \
--publisher-website='https://app.lizardbyte.dev' \
@ -98,12 +99,13 @@ jobs:
--skip-cleanup \
--skip-package \
--ubuntu-test-repo ${{ matrix.EXTRA_ARGS }}
echo "::remove-matcher owner=gcc::"
- name: Set AppImage Version
if: matrix.name == 'AppImage'
run: |
version=${{ inputs.release_version }}
echo "VERSION=${version}" >> $GITHUB_ENV
echo "VERSION=${version}" >> "${GITHUB_ENV}"
- name: Package Linux - AppImage
if: matrix.name == 'AppImage'