Author: manx
Date: Sun Apr 28 19:29:25 2024
New Revision: 20679
URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=20679
Log:
[Fix] build: CI: GitHub: Fedora: Workaround GitHub quirks. See <https://github.com/dorny/test-reporter/issues/131#issuecomment-881945146> and <https://github.com/actions/runner/issues/2033>.
Modified:
trunk/OpenMPT/.github/workflows/Fedora-Makefile.yml
Modified: trunk/OpenMPT/.github/workflows/Fedora-Makefile.yml
==============================================================================
--- trunk/OpenMPT/.github/workflows/Fedora-Makefile.yml Sun Apr 28 18:25:38 2024 (r20678)
+++ trunk/OpenMPT/.github/workflows/Fedora-Makefile.yml Sun Apr 28 19:29:25 2024 (r20679)
@@ -18,9 +18,13 @@
image: fedora:latest
steps:
- - uses: actions/checkout@v4
- name: install dependencies
run: dnf -y upgrade --refresh && dnf -y install subversion perl-XML-XPath git mawk zip unzip p7zip xz make binutils gcc gcc-g++ clang pcc pkgconf help2man doxygen autoconf autoconf-archive automake libtool ccache zlib-devel mpg123-devel libogg-devel libvorbis-devel portaudio-devel pulseaudio-libs-devel SDL2-devel flac-devel libsndfile-devel libtool-ltdl-devel
+ - name: checkout
+ uses: actions/checkout@v4
+ - name: fix git
+ # https://github.com/actions/runner/issues/2033
+ run: chown -R $(id -u):$(id -g) $(pwd)
- name: make
run: make -j$(nproc) STRICT=1
- name: make check
|