Skip to content

Commit 7852517

Browse files
committed
Merge branch 'master' into push-notifications-settings-hawken
* master: (28 commits) prettify remove manual color overrides from Settings Hide extraneous black left/right edge borders fix up the background color of Section on Android show info header for each line line messages for each bus circle: Upgrade ruby-based builds to use 2.5.1 circle: Extract HOMEBREW_NO_AUTO_UPDATE to ios environment circle: Stop repeating Docker image for ruby builds circle: Stop repeating Docker image for node builds hours: Fix convenience store hours hours: Mark convenience store as open for the year hours: Remove opening on Sunday hours: Correct user-submitted hours hours: Update Post Office hours per user submission hours: Update bookstore hours per user submission yarn: Poke the lockfile yarn: Poke the lockfile yarn: Poke the lockfile android: Prioritize local repositories over remotes ...
2 parents 55273f9 + 7aa01ae commit 7852517

File tree

22 files changed

+126
-118
lines changed

22 files changed

+126
-118
lines changed

.circleci/config.yml

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
version: 2
33

44
x-config:
5+
x-images:
6+
- &docker-node
7+
- image: 'circleci/node:8'
8+
- &docker-ruby
9+
- image: 'circleci/ruby:2.5.1'
510
x-caching: # caching instructions
611
- &save-cache-yarn
712
key: 'v3-yarn-dependencies-{{ arch }}-{{ checksum "yarn.lock" }}'
@@ -103,7 +108,7 @@ workflows:
103108

104109
jobs:
105110
cache-yarn-linux:
106-
docker: [{image: 'circleci/node:8'}]
111+
docker: *docker-node
107112
steps:
108113
- checkout
109114
- restore_cache: *restore-cache-yarn
@@ -113,7 +118,7 @@ jobs:
113118
- persist_to_workspace: *persist-workspace-node_modules
114119

115120
cache-bundler-linux:
116-
docker: [{image: 'circleci/ruby:2.4'}]
121+
docker: *docker-ruby
117122
steps:
118123
- checkout
119124
- run: *set-ruby-version
@@ -125,7 +130,7 @@ jobs:
125130
- save_cache: *save-cache-bundler
126131

127132
danger:
128-
docker: [{image: 'circleci/node:8'}]
133+
docker: *docker-node
129134
environment:
130135
task: JS-general
131136
steps:
@@ -134,7 +139,7 @@ jobs:
134139
- run: *run-danger
135140

136141
flow:
137-
docker: [{image: 'circleci/node:8'}]
142+
docker: *docker-node
138143
environment:
139144
task: JS-flow
140145
steps:
@@ -146,7 +151,7 @@ jobs:
146151
- run: *run-danger
147152

148153
jest:
149-
docker: [{image: 'circleci/node:8'}]
154+
docker: *docker-node
150155
environment:
151156
task: JS-jest
152157
JEST_JUNIT_OUTPUT: ./test-results/jest/junit.xml
@@ -171,7 +176,7 @@ jobs:
171176
fi
172177
173178
prettier:
174-
docker: [{image: 'circleci/node:8'}]
179+
docker: *docker-node
175180
environment:
176181
task: JS-prettier
177182
steps:
@@ -189,7 +194,7 @@ jobs:
189194
- run: *run-danger
190195

191196
eslint:
192-
docker: [{image: 'circleci/node:8'}]
197+
docker: *docker-node
193198
environment:
194199
task: JS-lint
195200
steps:
@@ -204,7 +209,7 @@ jobs:
204209
path: ./test-results
205210

206211
data:
207-
docker: [{image: 'circleci/node:8'}]
212+
docker: *docker-node
208213
environment:
209214
task: JS-data
210215
steps:
@@ -260,7 +265,7 @@ jobs:
260265
IS_NIGHTLY: '1'
261266

262267
android-bundle:
263-
docker: [{image: 'circleci/node:8'}]
268+
docker: *docker-node
264269
environment:
265270
task: JS-bundle-android
266271
steps:
@@ -284,6 +289,7 @@ jobs:
284289
task: IOS
285290
FASTLANE_SKIP_UPDATE_CHECK: '1'
286291
FASTLANE_DISABLE_ANIMATION: '1'
292+
HOMEBREW_NO_AUTO_UPDATE: 1
287293
LC_ALL: en_US.UTF-8
288294
LANG: en_US.UTF-8
289295
shell: /bin/bash --login -o pipefail
@@ -297,8 +303,8 @@ jobs:
297303
- restore_cache: *restore-cache-bundler
298304
- run: bundle check || bundle install --frozen --path ./vendor/bundle
299305
- save_cache: *save-cache-bundler
300-
- run: HOMEBREW_NO_AUTO_UPDATE=1 brew tap wix/brew
301-
- run: HOMEBREW_NO_AUTO_UPDATE=1 brew install applesimutils
306+
- run: brew tap wix/brew
307+
- run: brew install applesimutils
302308
- run: mkdir -p logs/
303309
- run: *embed-env-vars
304310
- run:
@@ -322,7 +328,7 @@ jobs:
322328
IS_NIGHTLY: '1'
323329

324330
ios-bundle:
325-
docker: [{image: 'circleci/node:8'}]
331+
docker: *docker-node
326332
environment:
327333
task: JS-bundle-ios
328334
steps:
857 Bytes
Loading
688 Bytes
Loading
1.1 KB
Loading
1.42 KB
Loading
2.06 KB
Loading

android/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@ ext {
2121

2222
allprojects {
2323
repositories {
24-
mavenLocal()
25-
jcenter()
2624
maven {
2725
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
2826
url "$rootDir/../node_modules/react-native/android"
2927
}
30-
maven {
31-
// react-native-custom-tabs requires this maven repository
32-
url "https://jitpack.io"
33-
}
3428
maven {
3529
// Local Maven repo containing AARs with JSC library built for Android, like RN
3630
url "$rootDir/../node_modules/jsc-android/dist"
3731
}
32+
mavenLocal()
3833
google()
34+
jcenter()
35+
maven {
36+
// react-native-custom-tabs requires this maven repository
37+
url "https://jitpack.io"
38+
}
3939
}
4040
}

data/building-hours/2-1-bookstore.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ category: Supplies and Books
55
schedule:
66
- title: Hours
77
hours:
8-
# - {days: [Mo, Tu, We, Th, Fr], from: '8:00am', to: '5:00pm'}
9-
# - {days: [Sa], from: '10:00am', to: '4:00pm'}
10-
- {days: [Mo, Tu, We, Th, Fr], from: '8:00am', to: '4:30pm'}
8+
- {days: [Mo, Tu, We, Th, Fr], from: '8:00am', to: '6:00pm'}
9+
- {days: [Sa], from: '10:00am', to: '4:00pm'}
1110

1211
breakSchedule:
1312
fall: []

data/building-hours/2-2-convenience-store.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ category: Supplies and Books
44

55
schedule:
66
- title: Hours
7-
hours: []
8-
# - {days: [Mo, Tu, We, Th, Fr], from: '5:00pm', to: '8:00pm'}
9-
# - {days: [Sa], from: '4:00pm', to: '8:00pm'}
10-
# - {days: [Su], from: '12:00pm', to: '4:00pm'}
11-
notes: The convenience store is closed for the summer? They should be open whenever the bookstore is open.
7+
hours:
8+
- {days: [Mo, Tu, We, Th, Fr], from: '5:00pm', to: '8:00pm'}
9+
- {days: [Sa], from: '4:00pm', to: '8:00pm'}
10+
- {days: [Su], from: '12:00pm', to: '4:00pm'}
1211

1312
breakSchedule:
1413
fall: []

data/building-hours/3-1-post-office.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,10 @@ category: Mail and Packages
44

55
schedule:
66
- title: Hours
7-
# closedForChapelTime: true
7+
closedForChapelTime: true
88
hours:
9-
# - {days: [Mo, Tu, We, Th, Fr], from: '8:00am', to: '5:00pm'}
10-
# - {days: [Sa], from: '10:00am', to: '1:00pm'}
11-
- {days: [Mo, Tu, We, Th], from: '8:00am', to: '3:00pm'}
12-
- {days: [Fr], from: '8:00am', to: '12:00pm'}
9+
- {days: [Mo, Tu, We, Th, Fr], from: '8:00am', to: '5:00pm'}
10+
- {days: [Sa], from: '10:00am', to: '1:00pm'}
1311

1412
breakSchedule:
1513
fall: []

0 commit comments

Comments
 (0)