This repository has been archived by the owner on Nov 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run builds using CircleCI 2.0 in an Alpine 3.5 container (#21)
* Support non-coreutils /bin/mktemp The template parameter is a coreutils extension and e.g. not available in busybox Test if we need it and use it only, if necessary * Run builds using CircleCI 2.0 in an Alpine 3.5 container Requires aaa7985 and ed9b4fd to pass tests
- Loading branch information
1 parent
2ca71d9
commit 18f8766
Showing
3 changed files
with
26 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
working_directory: /circleci-matrix | ||
docker: | ||
- image: docker.io/library/alpine:3.5 | ||
steps: | ||
- checkout | ||
- run: | ||
name: Install dependencies | ||
command: | | ||
apk add --no-cache bash ca-certificates ncurses wget | ||
wget -O bats-0.4.0.tar.gz https://github.com/sstephenson/bats/archive/v0.4.0.tar.gz | ||
tar -xzf bats-0.4.0.tar.gz | ||
cd bats-0.4.0 | ||
./install.sh /usr/local | ||
- run: | ||
name: Run tests | ||
command: bats tests/run.bats | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters