veilidchat/.gitlab-ci.yml

36 lines
1.0 KiB
YAML
Raw Normal View History

2023-09-27 02:46:49 +00:00
stages:
- build
2023-09-27 14:01:59 +00:00
# - test
2023-09-27 02:46:49 +00:00
.macos_saas_runners:
tags:
- saas-macos-medium-m1
image: macos-12-xcode-14
before_script:
- echo "started by ${GITLAB_USER_NAME}"
2023-09-27 14:01:59 +00:00
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
2023-09-27 02:46:49 +00:00
build:
extends:
- .macos_saas_runners
stage: build
script:
- echo "place holder for build"
2023-09-27 14:01:59 +00:00
#test:
# extends:
# - .macos_saas_runners
# stage: test
# script:
# - echo "place holder for test"
2023-09-27 02:46:49 +00:00