From 251ac0332e963a10c9c27278e0bb0dc5d81f1988 Mon Sep 17 00:00:00 2001 From: depth Date: Wed, 22 Jul 2020 14:29:11 +0000 Subject: [PATCH] circleci: import config --- .circleci/config.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000000..a09d3a3b341a --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,18 @@ +version: 2.1 +jobs: + compile: + docker: + - image: ubuntu:18.04 + steps: + - run: + command: | + apt-get -y update && apt-get -y upgrade && apt-get -y install bc build-essential zip gcc clang libc6 curl libstdc++6 git wget libssl-dev zstd + git clone --depth=1 https://github.com/tesla59/hydra_kernel -b ten + cd hydra_kernel + wget https://raw.githubusercontent.com/tesla59/scripts/master/kernel.sh + source kernel.sh +workflows: + version: 2.1 + cooking: + jobs: + - compile