mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
docker-worker doesn’t like gzip, try lz4
This commit is contained in:
parent
8e7d83206f
commit
22f5da0a92
2 changed files with 3 additions and 3 deletions
|
@ -77,7 +77,7 @@ image_build_task = create_task(
|
|||
"dind": True, # docker-in-docker
|
||||
},
|
||||
artifacts=[
|
||||
("image.tar.gz", "/image.tar.gz"),
|
||||
("image.tar.lz4", "/image.tar.lz4"),
|
||||
],
|
||||
)
|
||||
|
||||
|
@ -88,7 +88,7 @@ build_task = create_task(
|
|||
image={
|
||||
"type": "task-image",
|
||||
"taskId": image_build_task,
|
||||
"path": "public/image.tar.gz",
|
||||
"path": "public/image.tar.lz4",
|
||||
},
|
||||
|
||||
artifacts=[
|
||||
|
|
|
@ -9,4 +9,4 @@ apt-get update -q
|
|||
apt-get install -qy --no-install-recommends docker.io
|
||||
docker version
|
||||
./docker/build.sh "$image"
|
||||
docker save "$image" | gzip > /image.tar.gz
|
||||
docker save "$image" | lz4 > /image.tar.lz4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue