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 ../.."