Skip to content

Commit

Permalink
ci: add missing apt package
Browse files Browse the repository at this point in the history
  • Loading branch information
eysi09 committed Oct 23, 2018
1 parent ddc8c32 commit 37d11f7
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,20 @@ jobs:
- run:
name: Install apt dependencies
command: |
sudo apt-get update
sudo apt install software-properties-common
# Need software-properties-common for the add-apt-repository command
sudo add-apt-repository ppa:gophers/archive
sudo apt -y install rsync cmake libicu-dev pkg-config golang-1.11-go
- run:
name: Install apt dependencies
command: |
sudo apt-get update
sudo apt install rsync cmake libicu-dev pkg-config golang-1.11-go
sudo apt -y install software-properties-common
# Need software-properties-common for the add-apt-repository command
sudo add-apt-repository -y ppa:gophers/archive
sudo apt -y install rsync cmake libicu-dev pkg-config golang-1.11-go
- run:
name: Install kubectl
Expand Down

0 comments on commit 37d11f7

Please sign in to comment.