Update toolchain to support Apple Sillicon - 2025 edition #300
Workflow file for this run
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: Build | |
| on: | |
| push: | |
| pull_request: | |
| repository_dispatch: | |
| types: [run_build] | |
| jobs: | |
| build-linux: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y software-properties-common | |
| sudo apt-get install -y cmake cmake-data git build-essential autoconf automake libtool texinfo bison flex pkg-config | |
| - name: Build | |
| run: | | |
| git config --global user.email "builds@travis-ci.com" | |
| git config --global user.name "Travis CI" | |
| mkdir build | |
| cd build | |
| cmake .. | |
| make -j$(nproc) tarball | |
| - name: Upload artifacts | |
| if: ${{ success() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: vitasdk-linux | |
| path: build/*.tar.bz2 | |
| build-linux-arm64: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y software-properties-common | |
| sudo apt-get install -y cmake cmake-data git build-essential autoconf automake libtool texinfo bison flex pkg-config | |
| - name: Build | |
| run: | | |
| git config --global user.email "builds@travis-ci.com" | |
| git config --global user.name "Travis CI" | |
| mkdir build | |
| cd build | |
| cmake .. | |
| make -j$(nproc) tarball | |
| - name: Upload artifacts | |
| if: ${{ success() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: vitasdk-linux-arm64 | |
| path: build/*.tar.bz2 | |
| build-macos: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - name: Build | |
| run: | | |
| git config --global user.email "builds@travis-ci.com" | |
| git config --global user.name "Travis CI" | |
| brew install autoconf automake libtool texinfo pkg-config | |
| cmake -S . -B build -G "Unix Makefiles" | |
| cmake --build build --target tarball | |
| - name: Upload artifacts | |
| if: ${{ success() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: vitasdk-macos | |
| path: build/*.tar.bz2 | |
| build-windows: | |
| # TODO match as build-linux | |
| # we don't know reason yet, mingw build was failed when libelf compille. | |
| # mingw output have to be static linking, and that this reason, we are able to use 22.04 in here | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y software-properties-common | |
| sudo apt-get install -y cmake cmake-data git build-essential autoconf automake libtool texinfo bison flex pkg-config g++-mingw-w64 | |
| - name: Build | |
| run: | | |
| git config --global user.email "builds@travis-ci.com" | |
| git config --global user.name "Travis CI" | |
| unset CXX | |
| unset CC | |
| mkdir build | |
| cd build | |
| cmake .. -DCMAKE_TOOLCHAIN_FILE=toolchain-x86_64-w64-mingw32.cmake | |
| make -j$(nproc) tarball | |
| - name: Upload artifacts | |
| if: ${{ success() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: vitasdk-windows | |
| path: build/*.tar.bz2 |