Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Golang CircleCI 2.0 configuration file
version: 2
version: 2.1
orbs:
slack: circleci/[email protected]
jobs:
build:
docker:
Expand All @@ -19,13 +21,12 @@ jobs:
command: |
mkdir -p $GOPATH/src/github.com/operator-framework
cd $GOPATH/src/github.com/operator-framework
git clone --depth 1 --branch v0.15.2 https://github.com/operator-framework/operator-sdk
git clone --depth 1 --branch v0.16.0 https://github.com/operator-framework/operator-sdk
cd operator-sdk
make dep
make install

- setup_remote_docker:
# They want money to enable this toggle :(
docker_layer_caching: false

- run:
Expand All @@ -39,3 +40,8 @@ jobs:
- deploy:
command: |
docker push quay.io/innervate/secret-sync-operator:${CIRCLE_SHA1}

workflows:
build:
jobs:
- build