19 lines
331 B
YAML
19 lines
331 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
# Platform specification for ARM64 runners
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
steps:
|
|
# Step 1: Check if Docker image for current version already exists
|
|
- name: test
|
|
image: alpine
|
|
environment:
|
|
GIT_SSL_NO_VERIFY: "true"
|
|
commands:
|
|
- echo "pipeline running"
|