From: <sv...@op...> - 2024-09-22 06:57:46
|
Author: manx Date: Sun Sep 22 08:57:35 2024 New Revision: 21659 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21659 Log: [Imp] build: CI: GitHub: CPA: FreeBSD:Update FreeBSD 13 to 13.4. See r21657. Added: branches/OpenMPT-1.30/.github/workflows/FreeBSD-13.4-Makefile.yml - copied, changed from r21658, branches/OpenMPT-1.30/.github/workflows/FreeBSD-13.3-Makefile.yml Deleted: branches/OpenMPT-1.30/.github/workflows/FreeBSD-13.3-Makefile.yml Copied and modified: branches/OpenMPT-1.30/.github/workflows/FreeBSD-13.4-Makefile.yml (from r21658, branches/OpenMPT-1.30/.github/workflows/FreeBSD-13.3-Makefile.yml) ============================================================================== --- branches/OpenMPT-1.30/.github/workflows/FreeBSD-13.3-Makefile.yml Sun Sep 22 08:56:06 2024 (r21658, copy source) +++ branches/OpenMPT-1.30/.github/workflows/FreeBSD-13.4-Makefile.yml Sun Sep 22 08:57:35 2024 (r21659) @@ -1,4 +1,4 @@ -name: FreeBSD 13.3 Makefile +name: FreeBSD 13.4 Makefile on: push: @@ -17,23 +17,23 @@ - name: Checkout uses: actions/checkout@v4 - name: Startup VM - uses: cross-platform-actions/action@v0.25.0 + uses: cross-platform-actions/action@c306e1ae6fbb31dd74f8e0d052794224b92fec42 with: architecture: x86_64 memory: 4G operating_system: freebsd - version: '13.3' + version: '13.4' shell: bash sync_files: runner-to-vm shutdown_vm: false run: true - name: Install dependencies - uses: cross-platform-actions/action@v0.25.0 + uses: cross-platform-actions/action@c306e1ae6fbb31dd74f8e0d052794224b92fec42 with: architecture: x86_64 memory: 4G operating_system: freebsd - version: '13.3' + version: '13.4' shell: bash sync_files: false shutdown_vm: false @@ -41,36 +41,36 @@ sudo pkg upgrade -y 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.25.0 + uses: cross-platform-actions/action@c306e1ae6fbb31dd74f8e0d052794224b92fec42 with: architecture: x86_64 memory: 4G operating_system: freebsd - version: '13.3' + version: '13.4' shell: bash sync_files: false shutdown_vm: false run: | gmake -j$(sysctl -n hw.ncpu) STRICT=1 VERBOSE=1 AUTO_DEPS=1 - name: Test - uses: cross-platform-actions/action@v0.25.0 + uses: cross-platform-actions/action@c306e1ae6fbb31dd74f8e0d052794224b92fec42 with: architecture: x86_64 memory: 4G operating_system: freebsd - version: '13.3' + version: '13.4' shell: bash sync_files: false shutdown_vm: false run: | gmake -j$(sysctl -n hw.ncpu) STRICT=1 VERBOSE=1 AUTO_DEPS=1 check - name: Shutdown VM - uses: cross-platform-actions/action@v0.25.0 + uses: cross-platform-actions/action@c306e1ae6fbb31dd74f8e0d052794224b92fec42 with: architecture: x86_64 memory: 4G operating_system: freebsd - version: '13.3' + version: '13.4' shell: bash sync_files: false shutdown_vm: true |