From d6c265a7f0374ec875ca8d3df4018cc3a8860125 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Fri, 19 Jul 2024 23:52:50 -0500 Subject: [PATCH] Make Github CI use macOS x86_64 Github changed it to default to macOS ARM64. --- .github/workflows/build.yml | 91 +------------------------------------ 1 file changed, 2 insertions(+), 89 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 18192023..d72c03f6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,96 +2,9 @@ name: Build on: [push, pull_request] jobs: - linux-configure-gcc: - name: GCC (Linux) - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Install Dependencies - run: | - sudo apt update - sudo apt install autoconf automake make gcc g++ qtbase5-dev qtbase5-dev-tools qttools5-dev-tools libgl1-mesa-dev - - name: autogen.sh - run: ./autogen.sh - - name: configure - run: CC=gcc CXX=g++ ./configure - - name: make - run: make - - name: make install - run: sudo make install - - linux-configure-clang: - name: Clang (Linux) - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Install Dependencies - run: | - sudo apt update - sudo apt install autoconf automake make gcc g++ qtbase5-dev qtbase5-dev-tools qttools5-dev-tools libgl1-mesa-dev - - name: autogen.sh - run: ./autogen.sh - - name: configure - run: CC=clang CXX=clang++ ./configure - - name: make - run: make - - name: make install - run: sudo make install - - linux-make: - name: Makefile.generic (Linux, GCC) - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Install Dependencies - run: | - sudo apt update - sudo apt install autoconf automake make gcc g++ qtbase5-dev qtbase5-dev-tools qttools5-dev-tools libgl1-mesa-dev - - name: Setup - run: cp config.h.generic config.h - - name: make - run: make -f Makefile.generic - - name: make install - run: sudo make -f Makefile.generic install - - linux-flatpak: - name: Flatpak (Linux, GCC) - # flatpak-builder fails to download glu on ubuntu-22.04 - # (glu specified in mm3d-flatpak.yml) - # see https://github.com/flatpak/flatpak-builder/issues/468 - runs-on: ubuntu-20.04 - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 # This is needed for "git describe" to work. - - name: Install Dependencies - run: | - sudo apt update - sudo apt install flatpak flatpak-builder - flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo - - name: Set version for the Flatpak - run: | - # if not a tag, add version - if [ $(git describe) != $(git describe --abbrev=0) ]; then - sed -i "s||\n |" desktop/moe.clover.mm3d.metainfo.xml - fi - cat desktop/moe.clover.mm3d.metainfo.xml - - name: flatpak-builder - run: flatpak-builder --user --install-deps-from=flathub --repo=flatpak-repo --state-dir=flatpak-state flatpak-build mm3d-flatpak.yaml - - name: flatpak build-bundle - run: flatpak build-bundle flatpak-repo moe.clover.mm3d-$(git describe|sed 's/^v\([0-9]\)/\1/').flatpak moe.clover.mm3d - - name: flatpak install - run: | - flatpak install --user -y moe.clover.mm3d-$(git describe|sed 's/^v\([0-9]\)/\1/').flatpak - flatpak list - - uses: actions/upload-artifact@v4 - with: - name: Flatpak Bundle - path: ./*.flatpak - macOS: - name: macOS - runs-on: macOS-latest + name: macOS (x86_64) + runs-on: macos-latest-large steps: - uses: actions/checkout@v4 with: