-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (36 loc) · 987 Bytes
/
family.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: six-ios family
on:
workflow_dispatch:
push:
tags:
- '*'
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout project
uses: actions/checkout@v3
with:
submodules: recursive
- name: Get Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
# Manually install FVM and add it to PATH
- name: Install FVM
run: |
flutter pub global activate fvm
echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH
- name: Verify FVM installation
run: fvm --version
- name: Build common lib
run: |
git config --global url."https://${{ secrets.GIT_TOKEN }}@github.com/".insteadOf "[email protected]:"
make sixcommon
- name: Set up ruby env
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.2
bundler-cache: true
- name: Build & test binary
run: make family