ipblc/.drone.yml

103 lines
2.3 KiB
YAML
Raw Normal View History

---
kind: pipeline
type: docker
2022-06-04 11:47:42 +02:00
name: default-amd64
platform:
os: linux
arch: amd64
steps:
2024-12-02 20:13:28 +01:00
- &build-test
name: build and test
image: rust:1
pull: always
commands:
- apt-get update -y
2024-12-02 20:13:28 +01:00
- apt-get install -y libnftnl-dev libmnl-dev libclang-dev
- curl -o ${RUSTC_WRAPPER} https://assets.paulbsd.com/sccache_linux_${DRONE_STAGE_ARCH}
- chmod +x ${RUSTC_WRAPPER}
- cargo build --verbose --all
- cargo test --verbose --all
2023-11-03 10:26:10 +01:00
environment:
RUSTC_WRAPPER: /usr/bin/sccache
SCCACHE_WEBDAV_ENDPOINT: https://sccache.paulbsd.com
SCCACHE_WEBDAV_KEY_PREFIX: sccache
2022-06-04 15:09:55 +02:00
volumes:
- name: cargo
path: /usr/local/cargo/registry
- name: apt
path: /var/cache/apt
when:
2022-06-04 15:09:55 +02:00
event:
2022-08-28 18:38:46 +02:00
exclude:
- tag
2024-12-02 20:13:28 +01:00
- &release
name: release
image: rust:1
pull: always
commands:
- apt-get update -y
2024-12-02 20:13:28 +01:00
- apt-get install -y libnftnl-dev libmnl-dev libclang-dev
- curl -o ${RUSTC_WRAPPER} https://assets.paulbsd.com/sccache_linux_${DRONE_STAGE_ARCH}
- chmod +x ${RUSTC_WRAPPER}
- cargo build --release --verbose --all
- cd target/release
2022-06-04 11:55:20 +02:00
- tar -czvf ipblc-${DRONE_TAG}-${DRONE_STAGE_OS}-${DRONE_STAGE_ARCH}.tar.gz ipblc
2023-11-03 10:26:10 +01:00
environment:
RUSTC_WRAPPER: /usr/bin/sccache
SCCACHE_WEBDAV_ENDPOINT: https://sccache.paulbsd.com
SCCACHE_WEBDAV_KEY_PREFIX: sccache
2022-06-04 15:09:55 +02:00
volumes:
- name: cargo
path: /usr/local/cargo/registry
- name: apt
path: /var/cache/apt
when:
2022-06-04 15:09:55 +02:00
event:
- tag
2024-12-02 20:13:28 +01:00
- &publish
name: publish
image: plugins/gitea-release
settings:
base_url: https://git.paulbsd.com
api_key:
from_secret: gitea_token
files: "target/release/*.tar.gz"
2023-07-01 15:48:21 +02:00
#checksum:
# - sha256
# - sha512
environment:
PLUGIN_TITLE: ""
when:
2022-06-04 15:09:55 +02:00
event:
- tag
volumes:
- name: cargo
host:
path: /home/drone/cache/cargo
- name: apt
host:
path: /home/drone/cache/apt
2022-06-04 11:47:42 +02:00
---
kind: pipeline
type: docker
name: default-arm64
platform:
os: linux
arch: arm64
steps:
2024-12-02 20:13:28 +01:00
- *build_test
- *release
- *publish
2022-06-04 14:40:35 +02:00
volumes:
- name: cargo
host:
path: /home/drone/cache/cargo
- name: apt
host:
path: /home/drone/cache/apt