Hacking on IPA CICD

This commit is contained in:
TC 2023-09-27 14:01:59 +00:00
parent cdfaea38fa
commit 8c0149b09c

View File

@ -1,6 +1,6 @@
stages: stages:
- build - build
- test # - test
.macos_saas_runners: .macos_saas_runners:
tags: tags:
@ -8,6 +8,16 @@ stages:
image: macos-12-xcode-14 image: macos-12-xcode-14
before_script: before_script:
- echo "started by ${GITLAB_USER_NAME}" - echo "started by ${GITLAB_USER_NAME}"
script:
- git clone https://gitlab.com/veilid/veilid.git ../
- curl proto =https tlsv1.2 -sSf https://sh.rustup.rs | sh
- sudo -H -u $BREW_USER brew install capnp cmake wabt llvm protobuf openjdk@17 jq
- cargo install wasm-bindgen-cli wasm-pack cargo-edit
- sudo gem install cocoapods
- wget -P /Downloads https://storage.googleapis.com/flutter_infra_release/releases/stable/macos/flutter_macos_3.13.5-stable.zip
- unzip ~/Downloads/flutter_macos_3.13.5-stable.zip -d /Downloads && export PATH="$PATH:Downloads/flutter/bin"
- yes | flutter doctor --android-licenses
- ../veilid/veilid-flutter/setup_flutter.sh
build: build:
extends: extends:
@ -16,10 +26,10 @@ build:
script: script:
- echo "place holder for build" - echo "place holder for build"
test: #test:
extends: # extends:
- .macos_saas_runners # - .macos_saas_runners
stage: test # stage: test
script: # script:
- echo "place holder for test" # - echo "place holder for test"