Files
woodpecker-metal/.woodpecker.yml
2025-10-04 15:09:09 +08:00

14 lines
376 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# .woodpecker.yml
steps:
- name: hello-macos
# local 后端下image 用来指定 shell
image: /bin/zsh
when:
- event: [push, manual, pull_request]
platform: darwin/arm64 # 只在 macOS/ARM64 的 agent 上执行
commands:
- set -e
- echo "Agent platform: $CI_SYSTEM_PLATFORM"
- sw_vers
- xcodebuild -version || true