From af41c195418f98c9b50d83ead5d2632fe2825afb Mon Sep 17 00:00:00 2001 From: Shashank Baghel Date: Thu, 4 Feb 2021 17:41:46 +0530 Subject: [PATCH] configs: release tag v5.5.3 and regen build configs Signed-off-by: Shashank Baghel --- .circleci/config.yml | 50 ---------------------- arch/arm64/configs/whyred-newcam_defconfig | 2 +- arch/arm64/configs/whyred_defconfig | 2 +- build.yml | 33 +++++++++++--- 4 files changed, 29 insertions(+), 58 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index eb13af06ceb2..000000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,50 +0,0 @@ -version: 2.1 -jobs: - oldcam: - docker: - - image: archlinux:latest - steps: - - run: - command: | - pacman -Sy base-devel bc llvm curl zip wget git --noconfirm - git clone --depth=1 https://github.com/theradcolor/android_kernel_xiaomi_whyred.git -b $CIRCLE_BRANCH source - cd source - git clone --depth=1 https://github.com/theradcolor/lazyscripts.git -b master - sed -i "s/BOT_TOKEN=.*/BOT_TOKEN=$TG_BOT_API/g" lazyscripts/ci-scripts/ci-rad - script -c "bash -x lazyscripts/ci-scripts/ci-rad --oldcam --gcc" build.log - newcam: - docker: - - image: archlinux:latest - steps: - - run: - command: | - pacman -Sy base-devel bc llvm curl zip wget git --noconfirm - git clone --depth=1 https://github.com/theradcolor/android_kernel_xiaomi_whyred.git -b $CIRCLE_BRANCH source - cd source - git clone --depth=1 https://github.com/theradcolor/lazyscripts.git -b master - sed -i "s/BOT_TOKEN=.*/BOT_TOKEN=$TG_BOT_API/g" lazyscripts/ci-scripts/ci-rad - script -c "bash -x lazyscripts/ci-scripts/ci-rad --newcam --gcc" build.log - fakejob: - docker: - - image: archlinux:latest - steps: - - run: - command: | - pacman -Sy base-devel bc llvm curl zip wget git --noconfirm - git clone --depth=1 https://github.com/theradcolor/android_kernel_xiaomi_whyred.git -b $CIRCLE_BRANCH source - cd source - git clone --depth=1 https://github.com/theradcolor/lazyscripts.git -b master - sed -i "s/BOT_TOKEN=.*/BOT_TOKEN=$TG_BOT_API/g" lazyscripts/ci-scripts/ci-fake - script -c "bash -x lazyscripts/ci-scripts/ci-fake --gcc" build.log - nulljob: - docker: - - image: archlinux:latest - steps: - - run: - command: | - echo "Null job!" -workflows: - version: 2.1 - BOB the builder: - jobs: - - nulljob \ No newline at end of file diff --git a/arch/arm64/configs/whyred-newcam_defconfig b/arch/arm64/configs/whyred-newcam_defconfig index 47078c2048f1..fc683685f1a5 100644 --- a/arch/arm64/configs/whyred-newcam_defconfig +++ b/arch/arm64/configs/whyred-newcam_defconfig @@ -1,6 +1,6 @@ CONFIG_THERMAL_SWITCH=y CONFIG_KERNEL_CUSTOM_E7S=y -CONFIG_LOCALVERSION="-rad-v5.5.2" +CONFIG_LOCALVERSION="-rad-v5.5.3" # CONFIG_LOCALVERSION_AUTO is not set # CONFIG_USELIB is not set CONFIG_AUDIT=y diff --git a/arch/arm64/configs/whyred_defconfig b/arch/arm64/configs/whyred_defconfig index 313408e2d500..effbaf317c44 100644 --- a/arch/arm64/configs/whyred_defconfig +++ b/arch/arm64/configs/whyred_defconfig @@ -1,6 +1,6 @@ CONFIG_THERMAL_SWITCH=y CONFIG_KERNEL_CUSTOM_E7S=y -CONFIG_LOCALVERSION="-rad-v5.5.2" +CONFIG_LOCALVERSION="-rad-v5.5.3" # CONFIG_LOCALVERSION_AUTO is not set # CONFIG_USELIB is not set CONFIG_AUDIT=y diff --git a/build.yml b/build.yml index a4ddb04f9dab..98132e774f26 100644 --- a/build.yml +++ b/build.yml @@ -1,11 +1,11 @@ kind: pipeline -name: RAD KERNEL BUILD OLDCAM +name: RAD KERNEL BUILD GCC clone: disable: true steps: -- name: oldcam +- name: gnu-gcc oldcam image: archlinux:latest environment: TG_BOT_API: @@ -15,17 +15,38 @@ steps: - pacman -Sy base-devel bc curl zip wget git --noconfirm - git clone --depth=1 --quiet https://github.com/theradcolor/android_kernel_xiaomi_whyred.git -b ${DRONE_COMMIT_BRANCH} source && cd source - git clone --depth=1 --quiet https://github.com/theradcolor/lazyscripts.git -b master - - script -c "bash -x lazyscripts/ci-scripts/ci-rad --oldcam --aosp-clang" rad-oldcam-build.log && bash /drone/src/source/lazyscripts/ci-scripts/logger + - script -c "bash -x lazyscripts/ci-scripts/ci-rad --oldcam --gcc --gcc-master" build-logs-rad-gcc-oldcam.log && bash /drone/src/source/lazyscripts/ci-scripts/logger + + +--- +kind: pipeline +name: RAD KERNEL BUILD CLANG + +clone: + disable: true + +steps: +- name: llvm-clang oldcam + image: archlinux:latest + environment: + TG_BOT_API: + from_secret: TG_BOT_API + commands: + - "export TG_BOT_API" + - pacman -Sy base-devel bc curl zip wget git --noconfirm + - git clone --depth=1 --quiet https://github.com/theradcolor/android_kernel_xiaomi_whyred.git -b ${DRONE_COMMIT_BRANCH} source && cd source + - git clone --depth=1 --quiet https://github.com/theradcolor/lazyscripts.git -b master + - script -c "bash -x lazyscripts/ci-scripts/ci-rad --oldcam --proton-clang" build-logs-rad-proton-clang-oldcam.log && bash /drone/src/source/lazyscripts/ci-scripts/logger --- kind: pipeline -name: RAD KERNEL BUILD NEWCAM +name: RAD KERNEL BUILD AOSP CLANG clone: disable: true steps: -- name: newcam +- name: aosp-clang oldcam image: archlinux:latest environment: TG_BOT_API: @@ -35,4 +56,4 @@ steps: - pacman -Sy base-devel bc curl zip wget git --noconfirm - git clone --depth=1 --quiet https://github.com/theradcolor/android_kernel_xiaomi_whyred.git -b ${DRONE_COMMIT_BRANCH} source && cd source - git clone --depth=1 --quiet https://github.com/theradcolor/lazyscripts.git -b master - - script -c "bash -x lazyscripts/ci-scripts/ci-rad --newcam --aosp-clang" rad-newcam-build.log && bash /drone/src/source/lazyscripts/ci-scripts/logger + - script -c "bash -x lazyscripts/ci-scripts/ci-rad --oldcam --aosp-clang" build-logs-rad-aosp-clang-oldcam.log && bash /drone/src/source/lazyscripts/ci-scripts/logger \ No newline at end of file