From 1adb988add8b4fdeb8edc190b96122a472f3d439 Mon Sep 17 00:00:00 2001 From: neuecc Date: Tue, 10 Mar 2020 16:10:14 +0900 Subject: [PATCH] use checkout instead of shallow --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2f9639cb7..544087ad2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -47,7 +47,7 @@ jobs: build-test: executor: dotnet steps: - - git-shallow-clone/checkout_shallow + - checkout - run: dotnet build ./src/MagicOnion/ -c Debug - run: dotnet build ./src/MagicOnion.Abstractions/ -c Debug - run: dotnet build ./src/MagicOnion.Hosting/ -c Debug @@ -61,7 +61,7 @@ jobs: build-push: executor: dotnet steps: - - git-shallow-clone/checkout_shallow + - checkout # build .NET Core projects - run: dotnet build ./src/MagicOnion/ -c Release -p:VersionPrefix=${CIRCLE_TAG} - run: dotnet build ./src/MagicOnion.Abstractions/ -c Release -p:VersionPrefix=${CIRCLE_TAG} @@ -193,7 +193,7 @@ jobs: - /Users/distiller/Downloads/Unity_Packages/2018.4.5f1/UnitySetup-Android-Support-for-Editor-2018.4.5f1.pkg when: on_success # checkout and run unity build - - git-shallow-clone/checkout_shallow + - checkout - run: command: source $BASH_ENV && /Applications/Unity_2018.4.5f1/Unity.app/Contents/MacOS/Unity -quit -batchmode -nographics -silent-crashes -logFile -noUpm -executeMethod BatchBuild.Build -platform android -locationpath ./build/chatapp.apk -serial ${UNITY_SERIAL} -username ${UNITY_USERNAME} -password ${UNITY_PASSWORD} working_directory: ./samples/ChatApp/ChatApp.Unity @@ -209,7 +209,7 @@ jobs: canary-build-and-push-nuget: executor: dotnet steps: - - git-shallow-clone/checkout_shallow + - checkout - run: echo "export MAGICONION_VERSION=`echo ci-\`date '+%Y%m%d-%H%M%S'\`+${CIRCLE_SHA1:0:6}`" >> $BASH_ENV - run: echo "MAGICONION_VERSION=${MAGICONION_VERSION}" # build .NET Core projects