drone-test/.drone.yml

43 lines
1.3 KiB
YAML
Raw Normal View History

2022-08-10 00:09:50 +00:00
---
kind: pipeline
name: default
2022-08-10 00:18:24 +00:00
platfomr:
arch: amd64
2022-08-10 00:09:50 +00:00
steps:
- name: test
image: rust:1.62
2022-08-10 00:09:50 +00:00
volumes:
- name: dockersock
path: /var/run
commands:
2022-08-10 00:52:51 +00:00
- cargo check
2022-08-10 07:24:15 +00:00
- apt-get update && apt-get install -y podman
2022-08-10 07:21:28 +00:00
# - apt-get update && apt-get install -y ca-certificates curl gnupg lsb-release
# - mkdir -p /etc/apt/keyrings && curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
# - echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" >> /etc/apt/sources.list.d/docker.list
# - apt-get update && apt-get install -y docker-ce-cli
# - docker info
# - docker image list
2022-08-10 07:23:32 +00:00
- echo 'unqualified-search-registries = ["docker.io"]' >> /etc/containers/registries.conf
2022-08-10 07:43:52 +00:00
- echo "[storage]\ndriver = \"vfs\"" >> /etc/containers/storage.conf
2022-08-10 07:42:24 +00:00
- podman info
2022-08-10 07:59:44 +00:00
- mount
- podman run --rm hello-world
# - cargo install cross --git https://github.com/cross-rs/cross
# - cross build --release --target aarch64-unknown-linux-gnu
# - ls -lahR target/
2022-08-10 00:09:50 +00:00
2022-08-10 07:21:28 +00:00
# services:
# - name: docker
# image: docker:dind
# privileged: true
# volumes:
# - name: dockersock
# path: /var/run
2022-08-10 00:09:50 +00:00
2022-08-10 07:23:32 +00:00
# volumes:
# - name: dockersock
# temp: {}