bat-extras/.circleci/config.yml

83 lines
2.1 KiB
YAML
Raw Normal View History

2019-06-20 02:33:06 +02:00
version: 2.1
executors:
linux_alpine:
docker:
- image: alpine:latest
2019-06-20 02:37:16 +02:00
environment:
TERM: xterm
2019-06-20 02:33:06 +02:00
commands:
setup:
description: "Set up the environment needed to test and run the scripts."
steps:
- run:
name: "APK: Add repository."
command: printf "\n%s\n" "http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
- run:
name: "APK: Update cache."
command: apk update
- run:
name: "Setup: Install build packages."
2019-06-21 23:54:12 +02:00
command: apk add bash python2 diffutils ca-certificates curl
2019-06-20 02:33:06 +02:00
- run:
name: "Setup: Install runtime packages."
2019-06-20 02:37:16 +02:00
command: apk add bat ripgrep ncurses
2019-06-20 02:33:06 +02:00
build:
description: "Build the self-contained scripts."
parameters:
minify:
type: string
default: "lib"
steps:
- run:
name: "Build"
command: ./build.sh --minify=<<parameters.minify>>
2019-06-20 01:54:34 +02:00
jobs:
2019-06-20 02:33:06 +02:00
build:
executor: linux_alpine
steps:
- setup
- checkout
- build:
minify: "all"
2019-06-21 23:50:34 +02:00
- store_artifacts:
path: bin
2019-06-20 02:33:06 +02:00
test-snapshots:
executor: linux_alpine
steps:
- setup
- checkout
- build:
minify: "all"
- run:
name: "Test: Snapshots"
command: test/run.sh snapshot-test
test-consistency:
executor: linux_alpine
steps:
- setup
- checkout
- build:
minify: "all"
- run:
name: "Test: Consistency"
command: test/run.sh consistency-test
2019-06-20 01:54:34 +02:00
workflows:
2019-06-20 02:33:06 +02:00
version: 2
default:
jobs:
- build
- test-snapshots:
requires: [build]
- test-consistency:
requires: [build]
2019-06-20 01:54:34 +02:00