Update CircleCI, fix libc6:i386 install error
This commit is contained in:
parent
e466a94d18
commit
1407e2330b
|
@ -1,5 +1,15 @@
|
||||||
version: 2
|
version: 2
|
||||||
jobs:
|
jobs:
|
||||||
|
build:
|
||||||
|
docker:
|
||||||
|
- image: alpine
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- setup_remote_docker
|
||||||
|
- run: >-
|
||||||
|
apk add --no-cache --no-progress
|
||||||
|
bash docker make
|
||||||
|
- run: make image-prod
|
||||||
build_and_deploy:
|
build_and_deploy:
|
||||||
docker:
|
docker:
|
||||||
- image: alpine
|
- image: alpine
|
||||||
|
@ -17,6 +27,12 @@ workflows:
|
||||||
version: 2
|
version: 2
|
||||||
ci:
|
ci:
|
||||||
jobs:
|
jobs:
|
||||||
|
- build:
|
||||||
|
filters:
|
||||||
|
branches:
|
||||||
|
ignore: master
|
||||||
|
tags:
|
||||||
|
ignore: /.*/
|
||||||
- build_and_deploy:
|
- build_and_deploy:
|
||||||
filters:
|
filters:
|
||||||
branches:
|
branches:
|
||||||
|
|
|
@ -9,7 +9,7 @@ dpkg --add-architecture i386
|
||||||
|
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y apt-transport-https curl gnupg lsb-release software-properties-common wget
|
apt-get install -y apt-transport-https curl gnupg libc6 libc6:i386 lsb-release software-properties-common wget
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
ubuntu_ver="$(lsb_release -rs)"
|
ubuntu_ver="$(lsb_release -rs)"
|
||||||
|
|
Loading…
Reference in New Issue