turned off ci runner thing

This commit is contained in:
Dave Griffiths 2022-09-26 08:42:13 +01:00
parent 6241b1030d
commit e741246b1f

View File

@ -18,29 +18,29 @@
# see also https://docs.gitlab.com/ee/ci/runners/saas/macos_saas_runner.html # see also https://docs.gitlab.com/ee/ci/runners/saas/macos_saas_runner.html
.macos_saas_runners: # .macos_saas_runners:
tags: # tags:
- shared-macos-amd64 # - shared-macos-amd64
image: macos-11-xcode-12 # image: macos-11-xcode-12
stages: # stages:
- build # - build
- test # - test
before_script: # before_script:
- echo "started by ${GITLAB_USER_NAME}" # - echo "started by ${GITLAB_USER_NAME}"
build: # build:
extends: # extends:
- .macos_saas_runners # - .macos_saas_runners
stage: build # stage: build
script: # script:
- echo "running scripts in the build job" # - echo "running scripts in the build job"
test: # test:
extends: # extends:
- .macos_saas_runners # - .macos_saas_runners
stage: test # stage: test
script: # script:
- echo "running scripts in the test job" # - echo "running scripts in the test job"