mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
26 lines
382 B
YAML
26 lines
382 B
YAML
stages:
|
|
- build
|
|
- test
|
|
|
|
.macos_saas_runners:
|
|
tags:
|
|
- saas-macos-medium-m1
|
|
image: macos-12-xcode-14
|
|
before_script:
|
|
- echo "started by ${GITLAB_USER_NAME}"
|
|
|
|
build:
|
|
extends:
|
|
- .macos_saas_runners
|
|
stage: build
|
|
script:
|
|
- echo "place holder for build"
|
|
|
|
test:
|
|
extends:
|
|
- .macos_saas_runners
|
|
stage: test
|
|
script:
|
|
- echo "place holder for test"
|
|
|