From d1fc502ed4bc723d56760bdc0b5eb3e997930014 Mon Sep 17 00:00:00 2001 From: lingyuzeng Date: Sat, 4 Oct 2025 14:55:48 +0800 Subject: [PATCH] update --- .woodpecker.yml | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index ec37e93..1fc15f1 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,12 +1,19 @@ -# Minimal macOS exec pipeline example — adjust labels to match your agent. -pipeline: - hello-macos: +kind: pipeline +type: exec +name: hello-macos + +platform: + os: darwin + arch: arm64 + +steps: + - name: hello + commands: + - sw_vers + - xcodebuild -version || true when: agent: labels: host: Mac-mini.local platform: darwin/arm64 gpu: metal - commands: - - sw_vers - - xcodebuild -version || true