mirror of
https://github.com/eth-p/bat-extras.git
synced 2024-11-08 08:44:03 +01:00
83 lines
2.1 KiB
YAML
83 lines
2.1 KiB
YAML
version: 2.1
|
|
|
|
executors:
|
|
linux_alpine:
|
|
docker:
|
|
- image: alpine:latest
|
|
environment:
|
|
TERM: xterm
|
|
|
|
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."
|
|
command: apk add bash python2 diffutils ca-certificates curl
|
|
- run:
|
|
name: "Setup: Install runtime packages."
|
|
command: apk add bat ripgrep ncurses
|
|
|
|
build:
|
|
description: "Build the self-contained scripts."
|
|
parameters:
|
|
minify:
|
|
type: string
|
|
default: "lib"
|
|
steps:
|
|
- run:
|
|
name: "Build"
|
|
command: ./build.sh --minify=<<parameters.minify>>
|
|
|
|
|
|
jobs:
|
|
build:
|
|
executor: linux_alpine
|
|
steps:
|
|
- setup
|
|
- checkout
|
|
- build:
|
|
minify: "all"
|
|
- store_artifacts:
|
|
path: bin
|
|
|
|
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
|
|
|
|
|
|
workflows:
|
|
version: 2
|
|
default:
|
|
jobs:
|
|
- build
|
|
- test-snapshots:
|
|
requires: [build]
|
|
- test-consistency:
|
|
requires: [build]
|
|
|