From 31a6529590adcc146cfaabc31f86228933c7cfdb Mon Sep 17 00:00:00 2001 From: Autechre Date: Mon, 22 Feb 2021 07:16:46 +0100 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 08eab2a9e3..288f799709 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -365,9 +365,6 @@ build-retroarch-osx-x64: build-retroarch-osx-x64-metal: tags: - macosx - variables: - LIBRETRO_APPLE_PLATFORM: arm64-apple-macos10.15 - LIBRETRO_APPLE_ISYSROOT: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk stage: build before_script: - export NUMPROC=$((1 + $(sysctl -n hw.ncpu)/3)) @@ -380,7 +377,7 @@ build-retroarch-osx-x64-metal: script: # Build RetroArch - ./configure --enable-metal --disable-al --enable-coreaudio3 - - make ARCH=x86_64 BUILDBOT=1 -j$NUMPROC + - make ARCH=x86_64 -j$NUMPROC # Build filters - "cd libretro-common/audio/dsp_filters && make -j$NUMPROC build=release && cd ../../.." - "cd gfx/video_filters && make -j$NUMPROC build=release && cd ../.." @@ -416,9 +413,6 @@ build-retroarch-osx-x64-metal: build-retroarch-osx-arm64-metal: tags: - macosx - variables: - LIBRETRO_APPLE_PLATFORM: arm64-apple-macos10.15 - LIBRETRO_APPLE_ISYSROOT: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk stage: build before_script: - export NUMPROC=$((1 + $(sysctl -n hw.ncpu)/3)) @@ -431,7 +425,7 @@ build-retroarch-osx-arm64-metal: script: # Build RetroArch - ./configure --enable-metal --disable-al --enable-coreaudio3 - - make ARCH=arm64 BUILDBOT=1 -j$NUMPROC + - make ARCH=arm64 -j$NUMPROC # Build filters - "cd libretro-common/audio/dsp_filters && make -j$NUMPROC build=release && cd ../../.." - "cd gfx/video_filters && make -j$NUMPROC build=release && cd ../.."