mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-12-15 13:22:04 +08:00
40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
version: '1.0'
|
|
name: pipeline-dtk-build-aarch64
|
|
displayName: dtk-build-aarch64
|
|
triggers:
|
|
trigger: auto
|
|
push:
|
|
tags:
|
|
prefix:
|
|
- ''
|
|
stages:
|
|
- name: stage-2c12cce1
|
|
displayName: 编译
|
|
strategy: naturally
|
|
trigger: auto
|
|
executor: []
|
|
steps:
|
|
- step: execute@docker
|
|
name: execute_by_docker
|
|
displayName: 基于镜像的脚本执行
|
|
certificate: ''
|
|
image: docker.io/debian:buster
|
|
command:
|
|
- '# 请在此输入您想执行的脚本'
|
|
- sed -i 's/deb.debian.org/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
|
|
- apt update
|
|
- export DEBIAN_FRONTEND=noninteractive
|
|
- echo "安装git wget qemu-user-binfmt"
|
|
- apt install git wget qemu-user-binfmt
|
|
- ''
|
|
- git clone ???
|
|
- git clone https://gitlink.org.cn/shenmo7192/dtk-aarch64.git
|
|
- ''
|
|
artifacts:
|
|
- name: BUILD_ARTIFACT
|
|
path:
|
|
- ./target
|
|
notify: []
|
|
strategy:
|
|
retry: '0'
|