forked from tuist/tuist
-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (76 loc) · 2.03 KB
/
meta-tuist.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Meta Tuist
on:
push:
branches:
- main
pull_request:
paths:
- Gemfile*
- Package.swift
- Package.resolved
- Sources/**
- Tests/**
- projects/tuist/features/**
- Project.swift
env:
RUBY_VERSION: '2.7.2'
TUIST_STATS_OPT_OUT: true
jobs:
build:
name: Build with Xcode ${{ matrix.xcode }}
runs-on: macos-latest
strategy:
matrix:
xcode: ['12', '12.4']
steps:
- uses: actions/checkout@v1
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode_${{ matrix.xcode }}.app
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Generate Xcode project
run: |
./fourier generate tuist
- name: Build
run: |
./fourier build tuist all
test:
name: Test with Xcode ${{ matrix.xcode }}
runs-on: macos-latest
strategy:
matrix:
xcode: ['12', '12.4']
steps:
- uses: actions/checkout@v1
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode_${{ matrix.xcode }}.app
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Generate Xcode project
run: |
./fourier generate tuist
- name: Test
run: |
./fourier test tuist unit