[Imp] build: CI: GitHub: macOS: Add XCode 26.4. #720
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: DragonFlyBSD Autotools | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - { version: '6.4.0', lang: 'C' } | |
| - { version: '6.4.0', lang: 'en_US.UTF-8' } | |
| concurrency: | |
| group: ${{github.ref}}-${{github.workflow}}-${{matrix.version}}-${{matrix.lang}}-auotools | |
| cancel-in-progress: true | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build and Test | |
| uses: vmactions/dragonflybsd-vm@v1.1.3 | |
| env: | |
| LANG: ${{matrix.lang}} | |
| with: | |
| envs: 'LANG' | |
| release: ${{matrix.version}} | |
| usesh: true | |
| sync: rsync | |
| copyback: false | |
| prepare: | | |
| pkg upgrade -y | |
| pkg install -y bash subversion p5-XML-XPath git mawk gmake pkgconf autoconf autoconf-archive automake libtool help2man doxygen mpg123 libogg libvorbis flac libsndfile portaudio sdl2 | |
| run: | | |
| chown -R $(id -u):$(id -g) $(pwd) | |
| export MAKEFLAGS="-j$(sysctl -n hw.ncpu)"; ./build/autotools/autoconfiscate.sh |