Skip to content

Commit 8eabf5a

Browse files
committed
add to test facebook builds
1 parent 0d7fb66 commit 8eabf5a

File tree

7 files changed

+261
-200
lines changed

7 files changed

+261
-200
lines changed

.github/workflows/ci.yml

Lines changed: 166 additions & 166 deletions
Original file line numberDiff line numberDiff line change
@@ -9,153 +9,153 @@ env:
99
CI_XCODE_13: '/Applications/Xcode_13.1.app/Contents/Developer'
1010

1111
jobs:
12-
ios:
13-
runs-on: macos-latest
14-
steps:
15-
- uses: actions/checkout@v2
16-
- name: Cache Gems
17-
id: cache-gems
18-
uses: actions/cache@v2
19-
with:
20-
path: vendor/bundle
21-
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
22-
restore-keys: |
23-
${{ runner.os }}-gem-
24-
- name: Submodules and Bundle Install
25-
run: |
26-
git submodule update --init --recursive
27-
sudo gem install bundler
28-
bundle config set path 'vendor/bundle'
29-
bundle install
30-
- name: Build-Test
31-
run: set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:ios
32-
env:
33-
DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}
34-
- name: Send codecov
35-
run: bash <(curl https://codecov.io/bash)
12+
# ios:
13+
# runs-on: macos-latest
14+
# steps:
15+
# - uses: actions/checkout@v2
16+
# - name: Cache Gems
17+
# id: cache-gems
18+
# uses: actions/cache@v2
19+
# with:
20+
# path: vendor/bundle
21+
# key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
22+
# restore-keys: |
23+
# ${{ runner.os }}-gem-
24+
# - name: Submodules and Bundle Install
25+
# run: |
26+
# git submodule update --init --recursive
27+
# sudo gem install bundler
28+
# bundle config set path 'vendor/bundle'
29+
# bundle install
30+
# - name: Build-Test
31+
# run: set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:ios
32+
# env:
33+
# DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}
34+
# - name: Send codecov
35+
# run: bash <(curl https://codecov.io/bash)
3636

37-
macos:
38-
runs-on: macos-latest
39-
steps:
40-
- uses: actions/checkout@v2
41-
- name: Cache Gems
42-
id: cache-gems
43-
uses: actions/cache@v2
44-
with:
45-
path: vendor/bundle
46-
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
47-
restore-keys: |
48-
${{ runner.os }}-gem-
49-
- name: Submodules and Bundle Install
50-
run: |
51-
git submodule update --init --recursive
52-
sudo gem install bundler
53-
bundle config set path 'vendor/bundle'
54-
bundle install
55-
- name: Create and set the default keychain
56-
run: |
57-
security create-keychain -p "" temporary
58-
security default-keychain -s temporary
59-
security unlock-keychain -p "" temporary
60-
security set-keychain-settings -lut 7200 temporary
61-
- name: Build-Test
62-
run: set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:macos
63-
env:
64-
DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}
65-
- name: Send codecov
66-
run: bash <(curl https://codecov.io/bash)
37+
# macos:
38+
# runs-on: macos-latest
39+
# steps:
40+
# - uses: actions/checkout@v2
41+
# - name: Cache Gems
42+
# id: cache-gems
43+
# uses: actions/cache@v2
44+
# with:
45+
# path: vendor/bundle
46+
# key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
47+
# restore-keys: |
48+
# ${{ runner.os }}-gem-
49+
# - name: Submodules and Bundle Install
50+
# run: |
51+
# git submodule update --init --recursive
52+
# sudo gem install bundler
53+
# bundle config set path 'vendor/bundle'
54+
# bundle install
55+
# - name: Create and set the default keychain
56+
# run: |
57+
# security create-keychain -p "" temporary
58+
# security default-keychain -s temporary
59+
# security unlock-keychain -p "" temporary
60+
# security set-keychain-settings -lut 7200 temporary
61+
# - name: Build-Test
62+
# run: set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:macos
63+
# env:
64+
# DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}
65+
# - name: Send codecov
66+
# run: bash <(curl https://codecov.io/bash)
6767

68-
facebook_utils:
69-
needs: parseui
70-
runs-on: macos-latest
71-
env:
72-
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73-
steps:
74-
- uses: actions/checkout@v2
75-
- name: Cache Gems
76-
id: cache-gems
77-
uses: actions/cache@v2
78-
with:
79-
path: vendor/bundle
80-
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
81-
restore-keys: |
82-
${{ runner.os }}-gem-
83-
- name: Submodules and Bundle Install
84-
run: |
85-
git submodule update --init --recursive
86-
sudo gem install bundler
87-
bundle config set path 'vendor/bundle'
88-
bundle install
89-
carthage bootstrap --use-xcframeworks
90-
- name: Build-Test
91-
run: set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:facebook_utils:ios
92-
env:
93-
DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}
94-
- name: Send codecov
95-
run: bash <(curl https://codecov.io/bash)
68+
# facebook_utils:
69+
# needs: parseui
70+
# runs-on: macos-latest
71+
# env:
72+
# GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73+
# steps:
74+
# - uses: actions/checkout@v2
75+
# - name: Cache Gems
76+
# id: cache-gems
77+
# uses: actions/cache@v2
78+
# with:
79+
# path: vendor/bundle
80+
# key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
81+
# restore-keys: |
82+
# ${{ runner.os }}-gem-
83+
# - name: Submodules and Bundle Install
84+
# run: |
85+
# git submodule update --init --recursive
86+
# sudo gem install bundler
87+
# bundle config set path 'vendor/bundle'
88+
# bundle install
89+
# carthage bootstrap --use-xcframeworks
90+
# - name: Build-Test
91+
# run: set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:facebook_utils:ios
92+
# env:
93+
# DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}
94+
# - name: Send codecov
95+
# run: bash <(curl https://codecov.io/bash)
9696

97-
twitter_utils:
98-
needs: parseui
99-
runs-on: macos-latest
100-
steps:
101-
- uses: actions/checkout@v2
102-
- name: Cache Gems
103-
id: cache-gems
104-
uses: actions/cache@v2
105-
with:
106-
path: vendor/bundle
107-
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
108-
restore-keys: |
109-
${{ runner.os }}-gem-
110-
- name: Submodules and Bundle Install
111-
run: |
112-
git submodule update --init --recursive
113-
sudo gem install bundler
114-
bundle config set path 'vendor/bundle'
115-
bundle install
116-
- name: Build-Test
117-
run: set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:twitter_utils:ios
118-
env:
119-
DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}
120-
- name: Send codecov
121-
run: bash <(curl https://codecov.io/bash)
97+
# twitter_utils:
98+
# needs: parseui
99+
# runs-on: macos-latest
100+
# steps:
101+
# - uses: actions/checkout@v2
102+
# - name: Cache Gems
103+
# id: cache-gems
104+
# uses: actions/cache@v2
105+
# with:
106+
# path: vendor/bundle
107+
# key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
108+
# restore-keys: |
109+
# ${{ runner.os }}-gem-
110+
# - name: Submodules and Bundle Install
111+
# run: |
112+
# git submodule update --init --recursive
113+
# sudo gem install bundler
114+
# bundle config set path 'vendor/bundle'
115+
# bundle install
116+
# - name: Build-Test
117+
# run: set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:twitter_utils:ios
118+
# env:
119+
# DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}
120+
# - name: Send codecov
121+
# run: bash <(curl https://codecov.io/bash)
122122

123-
parseui:
124-
runs-on: macos-latest
125-
env:
126-
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
127-
steps:
128-
- uses: actions/checkout@v2
129-
- name: Cache Gems
130-
id: cache-gems
131-
uses: actions/cache@v2
132-
with:
133-
path: vendor/bundle
134-
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
135-
restore-keys: |
136-
${{ runner.os }}-gem-
137-
- name: Submodules and Bundle Install
138-
run: |
139-
git submodule update --init --recursive
140-
sudo gem install bundler
141-
bundle config set path 'vendor/bundle'
142-
bundle install
143-
carthage bootstrap --use-xcframeworks
144-
- name: Build-Test
145-
env:
146-
DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}
147-
run: set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:parseui:all
148-
- name: Send codecov
149-
run: bash <(curl https://codecov.io/bash)
123+
# parseui:
124+
# runs-on: macos-latest
125+
# env:
126+
# GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
127+
# steps:
128+
# - uses: actions/checkout@v2
129+
# - name: Cache Gems
130+
# id: cache-gems
131+
# uses: actions/cache@v2
132+
# with:
133+
# path: vendor/bundle
134+
# key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
135+
# restore-keys: |
136+
# ${{ runner.os }}-gem-
137+
# - name: Submodules and Bundle Install
138+
# run: |
139+
# git submodule update --init --recursive
140+
# sudo gem install bundler
141+
# bundle config set path 'vendor/bundle'
142+
# bundle install
143+
# carthage bootstrap --use-xcframeworks
144+
# - name: Build-Test
145+
# env:
146+
# DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}
147+
# run: set -o pipefail && env NSUnbufferedIO=YES bundle exec rake test:parseui:all
148+
# - name: Send codecov
149+
# run: bash <(curl https://codecov.io/bash)
150150

151-
cocoapods:
152-
runs-on: macos-latest
153-
steps:
154-
- uses: actions/checkout@v2
155-
- name: CocoaPods
156-
run: set -o pipefail && env NSUnbufferedIO=YES pod lib lint --allow-warnings --verbose --skip-import-validation
157-
env:
158-
DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}
151+
# cocoapods:
152+
# runs-on: macos-latest
153+
# steps:
154+
# - uses: actions/checkout@v2
155+
# - name: CocoaPods
156+
# run: set -o pipefail && env NSUnbufferedIO=YES pod lib lint --allow-warnings --verbose --skip-import-validation
157+
# env:
158+
# DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}
159159

160160
assets:
161161
runs-on: macos-latest
@@ -183,27 +183,27 @@ jobs:
183183
env:
184184
DEVELOPER_DIR: ${{ env.CI_XCODE_11 }}
185185

186-
docs:
187-
needs: parseui
188-
runs-on: macos-latest
189-
steps:
190-
- uses: actions/checkout@v2
191-
- name: Cache Gems
192-
id: cache-gems
193-
uses: actions/cache@v2
194-
with:
195-
path: vendor/bundle
196-
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
197-
restore-keys: |
198-
${{ runner.os }}-gem-
199-
- name: Submodules and Bundle Instal
200-
run: |
201-
git submodule update --init --recursive
202-
sudo gem install bundler
203-
bundle config path vendor/bundle
204-
bundle install
205-
- name: Create Jazzy Docs
206-
run: |
207-
./Scripts/jazzy.sh
208-
env:
209-
DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}
186+
# docs:
187+
# needs: parseui
188+
# runs-on: macos-latest
189+
# steps:
190+
# - uses: actions/checkout@v2
191+
# - name: Cache Gems
192+
# id: cache-gems
193+
# uses: actions/cache@v2
194+
# with:
195+
# path: vendor/bundle
196+
# key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
197+
# restore-keys: |
198+
# ${{ runner.os }}-gem-
199+
# - name: Submodules and Bundle Instal
200+
# run: |
201+
# git submodule update --init --recursive
202+
# sudo gem install bundler
203+
# bundle config path vendor/bundle
204+
# bundle install
205+
# - name: Create Jazzy Docs
206+
# run: |
207+
# ./Scripts/jazzy.sh
208+
# env:
209+
# DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}

0 commit comments

Comments
 (0)