-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
209 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: CD | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: macOS-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 2.6.5 | ||
|
||
- name: Bundle install | ||
run: bundle install | ||
|
||
- name: Publish release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN_CI }} | ||
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TOKEN_CI }} | ||
run: bundle exec fastlane publish_release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- master | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: macOS-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 2.6.5 | ||
|
||
- name: Ruby cache | ||
uses: actions/cache@v1 | ||
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 check || bundle install | ||
- name: Pods cache | ||
uses: actions/cache@v1 | ||
with: | ||
path: Pods | ||
key: ${{ runner.os }}-cocoapods-${{ hashFiles('**/Podfile.lock') }} | ||
|
||
- name: Pod install | ||
run: | | ||
if [ ! -d "Pods" ]; then | ||
bundle exec pod install | ||
fi | ||
- name: Build and test | ||
run: bundle exec fastlane ci_check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Create release PRs | ||
|
||
on: | ||
create | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: macOS-latest | ||
|
||
if: contains(github.ref, 'release') # allow to filter on release branches only | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 2.6.5 | ||
|
||
- name: Bundle install | ||
run: bundle install | ||
|
||
- name: Prepare release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN_CI }} | ||
run: bundle exec fastlane create_release_pr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,3 @@ | ||
GIT | ||
remote: ssh://[email protected]:29418/ADFastlane | ||
revision: c51b83c2930af4a4a8d72f09188b72f7b651a1a6 | ||
branch: develop | ||
specs: | ||
fastlane-plugin-ft_internal (0.1.0) | ||
ad_localize | ||
fastlane-plugin-appcenter | ||
fastlane-plugin-automated_test_emulator_run | ||
fastlane-plugin-aws_s3 (>= 1.7.0) | ||
fastlane-plugin-badge | ||
fastlane-plugin-demo_mode | ||
slather (< 3.0) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
|
@@ -21,19 +7,11 @@ GEM | |
i18n (>= 0.7, < 2) | ||
minitest (~> 5.1) | ||
tzinfo (~> 1.1) | ||
ad_localize (4.0.3) | ||
activesupport (>= 5.2, < 7.0) | ||
colorize (~> 0.8) | ||
google-api-client (~> 0.34) | ||
googleauth (~> 0.12) | ||
nokogiri (~> 1.10) | ||
addressable (2.7.0) | ||
public_suffix (>= 2.0.2, < 5.0) | ||
algoliasearch (1.27.5) | ||
httpclient (~> 2.8, >= 2.8.3) | ||
json (>= 1.5.1) | ||
apktools (0.7.4) | ||
rubyzip (~> 2.0) | ||
atomos (0.1.3) | ||
aws-eventstream (1.1.0) | ||
aws-partitions (1.387.0) | ||
|
@@ -52,13 +30,7 @@ GEM | |
aws-sigv4 (1.2.2) | ||
aws-eventstream (~> 1, >= 1.0.2) | ||
babosa (1.0.4) | ||
badge (0.12.0) | ||
curb (~> 0.9) | ||
fastimage (>= 1.6) | ||
fastlane (>= 2.0) | ||
mini_magick (>= 4.9.4, < 5.0.0) | ||
claide (1.0.3) | ||
clamp (1.3.2) | ||
cocoapods (1.10.0) | ||
addressable (~> 2.6) | ||
claide (>= 1.0.2, < 2.0) | ||
|
@@ -98,11 +70,9 @@ GEM | |
cocoapods-try (1.2.0) | ||
colored (1.2) | ||
colored2 (3.1.2) | ||
colorize (0.8.1) | ||
commander-fastlane (4.4.6) | ||
highline (~> 1.7.2) | ||
concurrent-ruby (1.1.7) | ||
curb (0.9.10) | ||
declarative (0.0.20) | ||
declarative-option (0.1.0) | ||
digest-crc (0.6.1) | ||
|
@@ -160,15 +130,7 @@ GEM | |
xcodeproj (>= 1.13.0, < 2.0.0) | ||
xcpretty (~> 0.3.0) | ||
xcpretty-travis-formatter (>= 0.0.3) | ||
fastlane-plugin-appcenter (1.10.0) | ||
fastlane-plugin-automated_test_emulator_run (1.6.0) | ||
fastlane-plugin-aws_s3 (1.8.0) | ||
apktools (~> 0.7) | ||
aws-sdk-s3 (~> 1) | ||
mime-types (~> 3.3) | ||
fastlane-plugin-badge (1.4.0) | ||
badge (~> 0.12.0) | ||
fastlane-plugin-demo_mode (1.0.2) | ||
fastlane-plugin-changelog (0.15.0) | ||
ffi (1.13.1) | ||
fourflusher (2.3.1) | ||
fuzzy_match (2.0.4) | ||
|
@@ -211,12 +173,8 @@ GEM | |
json (2.3.1) | ||
jwt (2.2.2) | ||
memoist (0.16.2) | ||
mime-types (3.3.1) | ||
mime-types-data (~> 3.2015) | ||
mime-types-data (3.2020.0512) | ||
mini_magick (4.10.1) | ||
mini_mime (1.0.2) | ||
mini_portile2 (2.4.0) | ||
minitest (5.14.2) | ||
molinillo (0.6.6) | ||
multi_json (1.15.0) | ||
|
@@ -225,8 +183,6 @@ GEM | |
nap (1.1.0) | ||
naturally (2.2.0) | ||
netrc (0.11.0) | ||
nokogiri (1.10.10) | ||
mini_portile2 (~> 2.4.0) | ||
os (1.1.1) | ||
plist (3.5.0) | ||
public_suffix (4.0.6) | ||
|
@@ -250,12 +206,6 @@ GEM | |
CFPropertyList | ||
naturally | ||
slack-notifier (2.3.2) | ||
slather (2.5.0) | ||
CFPropertyList (>= 2.2, < 4) | ||
activesupport | ||
clamp (~> 1.3) | ||
nokogiri (~> 1.8) | ||
xcodeproj (~> 1.7) | ||
terminal-notifier (2.0.0) | ||
terminal-table (1.8.0) | ||
unicode-display_width (~> 1.1, >= 1.1.1) | ||
|
@@ -292,7 +242,7 @@ DEPENDENCIES | |
CFPropertyList (= 2.3.6) | ||
cocoapods (= 1.10.0) | ||
fastlane | ||
fastlane-plugin-ft_internal! | ||
fastlane-plugin-changelog | ||
|
||
RUBY VERSION | ||
ruby 2.6.5p114 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,17 @@ | ||
source 'ssh://[email protected]:29418/CocoaPodsSpecs' | ||
source 'https://github.com/CocoaPods/Specs.git' | ||
|
||
platform :ios, '10.0' | ||
use_frameworks! | ||
|
||
pod 'CocoaLumberjack/Swift', '~> 3.5', :inhibit_warnings => true | ||
pod 'ADDynamicLogLevel', '~> 2.0', :inhibit_warnings => true | ||
|
||
abstract_target 'Form' do | ||
pod 'ADFormController', :path => './' | ||
|
||
target 'FormDemo' do | ||
pod 'Alamofire', '~> 4.8' | ||
pod 'Watchdog', '~> 4.0' | ||
pod 'ADUtils', '~> 9.3' | ||
pod 'ADUtils', '~> 10.0' | ||
end | ||
|
||
target 'FormDemoTests' do | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,13 @@ | ||
PODS: | ||
- ADDynamicLogLevel (2.1.0): | ||
- CocoaLumberjack (~> 3.0) | ||
- ADFormController (6.0.3): | ||
- ADKeyboardManager (~> 6.0) | ||
- ADKeyboardManager (6.0.0) | ||
- ADUtils (9.4.0): | ||
- ADUtils/objc (= 9.4.0) | ||
- ADUtils/objc (9.4.0): | ||
- ADUtils (10.5.0): | ||
- ADUtils/objc (= 10.5.0) | ||
- ADUtils/objc (10.5.0): | ||
- ADUtils/Swift | ||
- ADUtils/Swift (9.4.0) | ||
- ADUtils/Swift (10.5.0) | ||
- Alamofire (4.9.1) | ||
- CocoaLumberjack (3.7.0): | ||
- CocoaLumberjack/Core (= 3.7.0) | ||
- CocoaLumberjack/Core (3.7.0) | ||
- CocoaLumberjack/Swift (3.7.0): | ||
- CocoaLumberjack/Core | ||
|
@@ -32,9 +28,8 @@ PODS: | |
- Watchdog (4.0) | ||
|
||
DEPENDENCIES: | ||
- ADDynamicLogLevel (~> 2.0) | ||
- ADFormController (from `./`) | ||
- ADUtils (~> 9.3) | ||
- ADUtils (~> 10.0) | ||
- Alamofire (~> 4.8) | ||
- CocoaLumberjack/Swift (~> 3.5) | ||
- FBSnapshotTestCase (~> 2.1) | ||
|
@@ -56,18 +51,15 @@ SPEC REPOS: | |
- OCMock | ||
- Quick | ||
- Watchdog | ||
"ssh://[email protected]:29418/CocoaPodsSpecs": | ||
- ADDynamicLogLevel | ||
|
||
EXTERNAL SOURCES: | ||
ADFormController: | ||
:path: "./" | ||
|
||
SPEC CHECKSUMS: | ||
ADDynamicLogLevel: 7b576c84ef7a96ae1aa115e66516fc68f1e86de1 | ||
ADFormController: 95290c99fc0264e0335d090e61cf595c0b324009 | ||
ADFormController: 8958aee18f0e1cf43726f9ed80cbdfdac3c6347c | ||
ADKeyboardManager: a9dce48b8d2306c1fca5deb46d04fa8472516fe2 | ||
ADUtils: c3521517403e01ae41ea9e37235fd637777f574c | ||
ADUtils: 67372e355673bbc53f6843423dc78ebf3771f8ec | ||
Alamofire: 85e8a02c69d6020a0d734f6054870d7ecb75cf18 | ||
CocoaLumberjack: e8955b9d337ac307103b0a34fd141c32f27e53c5 | ||
FBSnapshotTestCase: 094f9f314decbabe373b87cc339bea235a63e07a | ||
|
@@ -77,6 +69,6 @@ SPEC CHECKSUMS: | |
Quick: f5754d69b7013f5864c29aab9ae6f0c79c5bc200 | ||
Watchdog: 370d2c2a58c9bede0e3f9b8cc26bf297745c31c2 | ||
|
||
PODFILE CHECKSUM: dadcf27961b92a3718adc4924741ea82ddfcfa37 | ||
PODFILE CHECKSUM: cde55cffb8e485ca348a8af64bd4a55211c4b9d9 | ||
|
||
COCOAPODS: 1.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
PODSPEC = "ADFormController.podspec" | ||
CHANGELOG = "CHANGELOG.md" | ||
REPO = "faberNovel/ADFormController" |
Oops, something went wrong.