From: <sv...@op...> - 2025-03-17 09:48:30
|
Author: manx Date: Mon Mar 17 10:48:13 2025 New Revision: 23048 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=23048 Log: [Imp] build: CI: GitHub: CPA: FreeBSD: Update FreeBSD 13 to 13.5. Added: branches/OpenMPT-1.30/.github/workflows/FreeBSD-13.5-Makefile.yml - copied, changed from r23047, branches/OpenMPT-1.30/.github/workflows/FreeBSD-13.4-Makefile.yml Deleted: branches/OpenMPT-1.30/.github/workflows/FreeBSD-13.4-Makefile.yml Copied and modified: branches/OpenMPT-1.30/.github/workflows/FreeBSD-13.5-Makefile.yml (from r23047, branches/OpenMPT-1.30/.github/workflows/FreeBSD-13.4-Makefile.yml) ============================================================================== --- branches/OpenMPT-1.30/.github/workflows/FreeBSD-13.4-Makefile.yml Mon Mar 17 10:47:06 2025 (r23047, copy source) +++ branches/OpenMPT-1.30/.github/workflows/FreeBSD-13.5-Makefile.yml Mon Mar 17 10:48:13 2025 (r23048) @@ -1,4 +1,4 @@ -name: FreeBSD 13.4 Makefile +name: FreeBSD 13.5 Makefile on: push: @@ -17,23 +17,23 @@ - name: Checkout uses: actions/checkout@v4 - name: Startup VM - uses: cross-platform-actions/action@v0.27.0 + uses: cross-platform-actions/action@2d97d42e1972a17b045fd709a422f7e55a86230d with: architecture: x86_64 memory: 4G operating_system: freebsd - version: '13.4' + version: '13.5' shell: bash sync_files: runner-to-vm shutdown_vm: false run: true - name: Install dependencies - uses: cross-platform-actions/action@v0.27.0 + uses: cross-platform-actions/action@2d97d42e1972a17b045fd709a422f7e55a86230d with: architecture: x86_64 memory: 4G operating_system: freebsd - version: '13.4' + version: '13.5' 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.27.0 + uses: cross-platform-actions/action@2d97d42e1972a17b045fd709a422f7e55a86230d with: architecture: x86_64 memory: 4G operating_system: freebsd - version: '13.4' + version: '13.5' 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.27.0 + uses: cross-platform-actions/action@2d97d42e1972a17b045fd709a422f7e55a86230d with: architecture: x86_64 memory: 4G operating_system: freebsd - version: '13.4' + version: '13.5' 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.27.0 + uses: cross-platform-actions/action@2d97d42e1972a17b045fd709a422f7e55a86230d with: architecture: x86_64 memory: 4G operating_system: freebsd - version: '13.4' + version: '13.5' shell: bash sync_files: false shutdown_vm: true |