From: <sv...@op...> - 2024-06-16 17:04:29
|
Author: manx Date: Sun Jun 16 19:04:21 2024 New Revision: 21037 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21037 Log: [Mod] build: CI: GitHub: Update FreeBSD to 14.1. [Mod] build: CI: GitHub: Update FreeBSD CPA to commit 6acac3ca1b632aa762721d537dea32398ba0f2b1. Modified: trunk/OpenMPT/.github/workflows/FreeBSD-Autotools.yml trunk/OpenMPT/.github/workflows/FreeBSD-Makefile.yml Modified: trunk/OpenMPT/.github/workflows/FreeBSD-Autotools.yml ============================================================================== --- trunk/OpenMPT/.github/workflows/FreeBSD-Autotools.yml Sun Jun 16 18:32:07 2024 (r21036) +++ trunk/OpenMPT/.github/workflows/FreeBSD-Autotools.yml Sun Jun 16 19:04:21 2024 (r21037) @@ -13,7 +13,7 @@ fail-fast: false matrix: include: - - { version: '14.0' } + - { version: '14.1' } - { version: '13.3' } concurrency: @@ -26,7 +26,7 @@ - name: Checkout uses: actions/checkout@v4 - name: Startup VM - uses: cross-platform-actions/action@v0.24.0 + uses: cross-platform-actions/action@6acac3ca1b632aa762721d537dea32398ba0f2b1 with: architecture: x86_64 hypervisor: qemu @@ -38,7 +38,7 @@ shutdown_vm: false run: true - name: Install dependencies - uses: cross-platform-actions/action@v0.24.0 + uses: cross-platform-actions/action@6acac3ca1b632aa762721d537dea32398ba0f2b1 with: architecture: x86_64 hypervisor: qemu @@ -51,7 +51,7 @@ run: | sudo pkg install -y subversion p5-XML-XPath git mawk gmake pkgconf autoconf autoconf-archive automake libtool help2man doxygen mpg123 libogg libvorbis flac libsndfile pulseaudio portaudio sdl2 - name: Build - uses: cross-platform-actions/action@v0.24.0 + uses: cross-platform-actions/action@6acac3ca1b632aa762721d537dea32398ba0f2b1 with: architecture: x86_64 hypervisor: qemu @@ -64,7 +64,7 @@ run: | export MAKEFLAGS="-j$(sysctl -n hw.ncpu)"; ./build/autotools/autoconfiscate.sh - name: Shutdown VM - uses: cross-platform-actions/action@v0.24.0 + uses: cross-platform-actions/action@6acac3ca1b632aa762721d537dea32398ba0f2b1 with: architecture: x86_64 hypervisor: qemu Modified: trunk/OpenMPT/.github/workflows/FreeBSD-Makefile.yml ============================================================================== --- trunk/OpenMPT/.github/workflows/FreeBSD-Makefile.yml Sun Jun 16 18:32:07 2024 (r21036) +++ trunk/OpenMPT/.github/workflows/FreeBSD-Makefile.yml Sun Jun 16 19:04:21 2024 (r21037) @@ -13,9 +13,9 @@ fail-fast: false matrix: include: - - { version: '14.0', deps: sys } - - { version: '14.0', deps: local } - - { version: '14.0', deps: small } + - { version: '14.1', deps: sys } + - { version: '14.1', deps: local } + - { version: '14.1', deps: small } - { version: '13.3', deps: sys } - { version: '13.3', deps: local } - { version: '13.3', deps: small } @@ -30,7 +30,7 @@ - name: Checkout uses: actions/checkout@v4 - name: Startup VM - uses: cross-platform-actions/action@v0.24.0 + uses: cross-platform-actions/action@6acac3ca1b632aa762721d537dea32398ba0f2b1 with: architecture: x86_64 hypervisor: qemu @@ -42,7 +42,7 @@ shutdown_vm: false run: true - name: Install dependencies - uses: cross-platform-actions/action@v0.24.0 + uses: cross-platform-actions/action@6acac3ca1b632aa762721d537dea32398ba0f2b1 with: architecture: x86_64 hypervisor: qemu @@ -55,7 +55,7 @@ run: | sudo pkg install -y subversion p5-XML-XPath git mawk gmake pkgconf autoconf autoconf-archive automake libtool help2man doxygen mpg123 libogg libvorbis flac libsndfile pulseaudio portaudio sdl2 - name: Build - uses: cross-platform-actions/action@v0.24.0 + uses: cross-platform-actions/action@6acac3ca1b632aa762721d537dea32398ba0f2b1 with: architecture: x86_64 hypervisor: qemu @@ -68,7 +68,7 @@ run: | gmake -j$(sysctl -n hw.ncpu) STRICT=1 VERBOSE=1 ${{ (matrix.deps == 'sys') && 'AUTO_DEPS=1' || (matrix.deps == 'local') && 'LOCAL_ZLIB=1 LOCAL_MPG123=1 LOCAL_OGG=1 LOCAL_VORBIS=1 NO_PORTAUDIO=1 NO_PORTAUDIOCPP=1 NO_PULSEAUDIO=1 NO_SDL2=1 NO_FLAC=1 NO_SNDFILE=1' || 'NO_ZLIB=1 NO_MPG123=1 NO_OGG=1 NO_VORBIS=1 NO_PORTAUDIO=1 NO_PORTAUDIOCPP=1 NO_PULSEAUDIO=1 NO_SDL2=1 NO_FLAC=1 NO_SNDFILE=1' }} - name: Test - uses: cross-platform-actions/action@v0.24.0 + uses: cross-platform-actions/action@6acac3ca1b632aa762721d537dea32398ba0f2b1 with: architecture: x86_64 hypervisor: qemu @@ -81,7 +81,7 @@ run: | gmake -j$(sysctl -n hw.ncpu) STRICT=1 VERBOSE=1 ${{ (matrix.deps == 'sys') && 'AUTO_DEPS=1' || (matrix.deps == 'local') && 'LOCAL_ZLIB=1 LOCAL_MPG123=1 LOCAL_OGG=1 LOCAL_VORBIS=1 NO_PORTAUDIO=1 NO_PORTAUDIOCPP=1 NO_PULSEAUDIO=1 NO_SDL2=1 NO_FLAC=1 NO_SNDFILE=1' || 'NO_ZLIB=1 NO_MPG123=1 NO_OGG=1 NO_VORBIS=1 NO_PORTAUDIO=1 NO_PORTAUDIOCPP=1 NO_PULSEAUDIO=1 NO_SDL2=1 NO_FLAC=1 NO_SNDFILE=1' }} check - name: Shutdown VM - uses: cross-platform-actions/action@v0.24.0 + uses: cross-platform-actions/action@6acac3ca1b632aa762721d537dea32398ba0f2b1 with: architecture: x86_64 hypervisor: qemu |