babashka/.circleci/config.yml

264 lines
7.6 KiB
YAML
Raw Normal View History

2019-08-09 12:51:42 +00:00
# Clojure CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-clojure/ for more details
#
version: 2.1
jobs:
jvm:
docker:
# specify the version you desire here
- image: circleci/clojure:lein-2.8.1
working_directory: ~/repo
environment:
LEIN_ROOT: "true"
2020-01-04 19:04:29 +00:00
BABASHKA_PLATFORM: linux # could be used in jar name
2019-08-09 12:51:42 +00:00
steps:
- checkout
2019-08-17 10:42:20 +00:00
- run:
name: "Pull Submodules"
command: |
git submodule init
git submodule update
2019-08-09 12:51:42 +00:00
- restore_cache:
keys:
- v1-dependencies-{{ checksum "project.clj" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: Install Clojure
command: |
wget -nc https://download.clojure.org/install/linux-install-1.10.1.447.sh
chmod +x linux-install-1.10.1.447.sh
sudo ./linux-install-1.10.1.447.sh
- run:
name: Install lsof
command: |
sudo apt-get install lsof
2019-08-09 12:51:42 +00:00
- run:
name: Run JVM tests
command: |
script/test
# - run:
# name: Run as tools.deps dependency
# command: |
# .circleci/script/tools.deps
- run:
name: Run as lein command
command: |
.circleci/script/lein
2020-01-01 20:57:46 +00:00
- run:
name: Create uberjar
command: |
mkdir -p /tmp/release
lein do clean, uberjar
VERSION=$(cat resources/BABASHKA_VERSION)
2020-01-08 10:48:40 +00:00
cp target/babashka-$VERSION-standalone.jar /tmp/release/babashka-$VERSION-standalone.jar
2020-01-01 20:57:46 +00:00
- store_artifacts:
path: /tmp/release
destination: release
2019-08-09 12:51:42 +00:00
- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "project.clj" }}
linux:
docker:
- image: circleci/clojure:lein-2.8.1
working_directory: ~/repo
environment:
LEIN_ROOT: "true"
2019-11-20 20:34:31 +00:00
GRAALVM_HOME: /home/circleci/graalvm-ce-java8-19.3.0
2019-08-09 12:51:42 +00:00
BABASHKA_PLATFORM: linux # used in release script
BABASHKA_TEST_ENV: native
steps:
- checkout
2019-08-17 10:42:20 +00:00
- run:
name: "Pull Submodules"
command: |
git submodule init
git submodule update
2019-08-09 12:51:42 +00:00
- restore_cache:
keys:
- linux-{{ checksum "project.clj" }}-{{ checksum ".circleci/config.yml" }}
- run:
name: Install Clojure
command: |
wget https://download.clojure.org/install/linux-install-1.10.1.447.sh
chmod +x linux-install-1.10.1.447.sh
sudo ./linux-install-1.10.1.447.sh
- run:
name: Install lsof
command: |
sudo apt-get install lsof
2019-08-09 12:51:42 +00:00
- run:
name: Install native dev tools
command: |
sudo apt-get update
2019-11-20 20:34:31 +00:00
sudo apt-get -y install gcc g++ zlib1g-dev
2019-08-09 12:51:42 +00:00
- run:
name: Download GraalVM
command: |
cd ~
2019-11-20 20:34:31 +00:00
if ! [ -d graalvm-ce-java8-19.3.0 ]; then
curl -O -sL https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-19.3.0/graalvm-ce-java8-linux-amd64-19.3.0.tar.gz
tar xzf graalvm-ce-java8-linux-amd64-19.3.0.tar.gz
2019-08-09 12:51:42 +00:00
fi
2019-08-17 20:19:46 +00:00
# - run:
# name: Install GraalVM SSL libs
# command: |
# .circleci/script/graalvm_ssl
2019-08-09 12:51:42 +00:00
- run:
name: Build binary
command: |
script/compile
no_output_timeout: 30m
- run:
name: Run tests
command: |
script/test
2020-01-07 08:33:37 +00:00
script/run_lib_tests
2019-08-09 12:51:42 +00:00
# - run:
# name: Performance report
# command: |
# .circleci/script/performance
- run:
name: Release
command: |
.circleci/script/release
- save_cache:
paths:
- ~/.m2
2019-11-20 20:34:31 +00:00
- ~/graalvm-ce-java8-19.3.0
2019-08-09 12:51:42 +00:00
key: linux-{{ checksum "project.clj" }}-{{ checksum ".circleci/config.yml" }}
- store_artifacts:
path: /tmp/release
destination: release
2020-01-07 11:58:27 +00:00
- run:
name: Publish artifact link to Slack
command: |
2020-01-07 15:43:48 +00:00
./bb .circleci/script/publish_artifact.clj
2019-08-09 12:51:42 +00:00
mac:
macos:
xcode: "9.0"
environment:
2019-11-20 20:34:31 +00:00
GRAALVM_HOME: /Users/distiller/graalvm-ce-java8-19.3.0/Contents/Home
2019-08-09 12:51:42 +00:00
BABASHKA_PLATFORM: macos # used in release script
BABASHKA_TEST_ENV: native
steps:
- checkout
2019-08-17 10:42:20 +00:00
- run:
name: "Pull Submodules"
command: |
git submodule init
git submodule update
2019-08-09 12:51:42 +00:00
- restore_cache:
keys:
- mac-{{ checksum "project.clj" }}-{{ checksum ".circleci/config.yml" }}
- run:
name: Install Clojure
command: |
.circleci/script/install-clojure /usr/local
- run:
name: Install Leiningen
command: |
.circleci/script/install-leiningen
- run:
name: Download GraalVM
command: |
cd ~
ls -la
2019-11-20 20:34:31 +00:00
if ! [ -d graalvm-ce-java8-19.3.0 ]; then
curl -O -sL https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-19.3.0/graalvm-ce-java8-darwin-amd64-19.3.0.tar.gz
tar xzf graalvm-ce-java8-darwin-amd64-19.3.0.tar.gz
2019-08-09 12:51:42 +00:00
fi
2019-08-17 20:19:46 +00:00
# - run:
# name: Install GraalVM SSL libs
# command: |
# .circleci/script/graalvm_ssl
2019-08-09 12:51:42 +00:00
- run:
name: Build binary
command: |
script/compile
no_output_timeout: 30m
- run:
name: Run tests
command: |
script/test
2020-01-07 08:33:37 +00:00
script/run_lib_tests
2019-08-09 12:51:42 +00:00
# - run:
# name: Performance report
# command: |
# .circleci/script/performance
- run:
name: Release
command: |
.circleci/script/release
- save_cache:
paths:
- ~/.m2
2019-11-20 20:34:31 +00:00
- ~/graalvm-ce-java8-19.3.0
2019-08-09 12:51:42 +00:00
key: mac-{{ checksum "project.clj" }}-{{ checksum ".circleci/config.yml" }}
- store_artifacts:
path: /tmp/release
destination: release
2020-01-07 11:58:27 +00:00
- run:
name: Publish artifact link to Slack
command: |
2020-01-07 15:43:48 +00:00
./bb .circleci/script/publish_artifact.clj
2019-08-09 12:51:42 +00:00
deploy:
docker:
- image: circleci/clojure:lein-2.8.1
working_directory: ~/repo
environment:
LEIN_ROOT: "true"
steps:
- checkout
2019-08-17 10:42:20 +00:00
- run:
name: "Pull Submodules"
command: |
git submodule init
git submodule update
2019-08-09 12:51:42 +00:00
- restore_cache:
keys:
- v1-dependencies-{{ checksum "project.clj" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: .circleci/script/deploy
- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "project.clj" }}
# docker:
# docker:
# - image: circleci/buildpack-deps:stretch
# steps:
# - checkout
# - setup_remote_docker:
# docker_layer_caching: true
# - run:
# name: Build Docker image
# command: .circleci/script/docker
workflows:
version: 2
ci:
jobs:
- jvm
- linux
- mac
- deploy:
filters:
branches:
only: master
requires:
- jvm
- linux
- mac
# - docker:
# filters:
# branches:
# only: master
# requires:
# - jvm
# - linux
# - mac