Remove docker service, no need for it
continuous-integration/drone/push Build is passing Details

Signed-off-by: Jacob Kiers <code@kiers.eu>
This commit is contained in:
Jacob Kiers 2023-06-10 14:27:59 +02:00
parent 7d75389a09
commit 007f9f9112
1 changed files with 3 additions and 36 deletions

View File

@ -33,7 +33,7 @@ local add_build_steps() = [
'cp target/' + arch.target + '/release/' + builtExecutableName(arch) + ' artifacts/' + targetExecutableName(arch),
'rm -rf target/' + arch.target + '/release/*',
],
depends_on: ['Wait for Docker'],
depends_on: ['Prepare'],
volumes: [{
name: getVolumeName(arch),
path: '/drone/src/target',
@ -51,25 +51,14 @@ local add_build_steps() = [
},
steps:
[{
name: 'Wait for Docker',
name: 'Prepare',
image: build_image,
commands: [
'mkdir artifacts',
'/usr/bin/env bash -c "pushd $(mktemp -d) && wget -nv https://download.docker.com/linux/debian/dists/bullseye/pool/stable/amd64/docker-ce-cli_24.0.2-1~debian.11~bullseye_amd64.deb -O docker-ce.dpkg && dpkg -i docker-ce.dpkg && popd"',
'echo Using image: ' + build_image,
'while ! docker image ls; do sleep 1; done',
'cargo --version',
'rustc --version',
'docker info',
'docker pull hello-world:latest',
],
environment: {
CROSS_REMOTE: true,
},
volumes: [{
name: 'dockersock',
path: '/var/run',
}],
}] +
add_build_steps() +
[
@ -99,29 +88,7 @@ local add_build_steps() = [
},
],
services: [{
name: 'docker',
image: 'docker:dind',
privileged: true,
volumes: [
{
name: 'dockersock',
path: '/var/run',
},
{
name: 'docker-storage',
path: '/var/lib/docker',
},
],
}],
volumes: [
{
name: 'dockersock',
temp: {},
},
]
+ getLocalVolumes(archs),
volumes: getLocalVolumes(archs),
image_pull_secrets: ['docker_private_repo'],
}