mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-12-27 04:53:50 +03:00
state artifacts' targets and rename artifacts
This will make it more obvious what's what and be more internally consistent.
This commit is contained in:
parent
ca198c51fa
commit
f7cc4fb3bb
1 changed files with 6 additions and 6 deletions
|
@ -34,19 +34,19 @@ ci:
|
||||||
- target
|
- target
|
||||||
- .gitlab-ci.d
|
- .gitlab-ci.d
|
||||||
|
|
||||||
docker:
|
oci-image:x86_64-unknown-linux-gnu:
|
||||||
stage: artifacts
|
stage: artifacts
|
||||||
image: nixos/nix:2.19.2
|
image: nixos/nix:2.19.2
|
||||||
script:
|
script:
|
||||||
- nix build .#oci-image
|
- nix build .#oci-image
|
||||||
|
|
||||||
# Make the output less difficult to find
|
# Make the output less difficult to find
|
||||||
- cp result docker-image.tar.gz
|
- cp result oci-image.tar.gz
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- docker-image.tar.gz
|
- oci-image.tar.gz
|
||||||
|
|
||||||
debian:
|
debian:x86_64-unknown-linux-gnu:
|
||||||
stage: artifacts
|
stage: artifacts
|
||||||
image: rust:1.70.0
|
image: rust:1.70.0
|
||||||
script:
|
script:
|
||||||
|
@ -55,10 +55,10 @@ debian:
|
||||||
- cargo deb
|
- cargo deb
|
||||||
|
|
||||||
# Make the output less difficult to find
|
# Make the output less difficult to find
|
||||||
- mv target/debian/*.deb .
|
- mv target/debian/*.deb conduit.deb
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- "*.deb"
|
- conduit.deb
|
||||||
cache:
|
cache:
|
||||||
key: debian
|
key: debian
|
||||||
paths:
|
paths:
|
||||||
|
|
Loading…
Reference in a new issue