Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 6 additions & 2 deletions buildspec-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ phases:
pre_build:
commands:
- apt-get update
- apt-get -y install libcurl4-openssl-dev g++-9
- apt install software-properties-common
- add-apt-repository ppa:ubuntu-toolchain-r/test
- apt-get -y install libcurl4-openssl-dev g++-9 gcc-9

# Confirm GCC install went through because it fails silently sometimes
- echo $(ls /usr/bin/)
- python3.8 -m pip install cpplint
- start-dockerd

build:
commands:
# prepare the release (update versions, changelog etc.)
Expand Down
8 changes: 7 additions & 1 deletion buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@ phases:
pre_build:
commands:
- apt-get update
- apt-get -y install libcurl4-openssl-dev g++-9
- apt install software-properties-common
- add-apt-repository ppa:ubuntu-toolchain-r/test
- apt-get -y install libcurl4-openssl-dev g++-9 gcc-9

# Confirm GCC install went through because it fails silently sometimes
- echo $(ls /usr/bin/)
- python3.8 -m pip install cpplint
- start-dockerd

build:
commands:
- tox -e flake8
Expand Down