Skip to content

Commit 82f0dce

Browse files
authored
Remove CircleCI config and related Fastlane lanes [SDK-4389] (#791)
1 parent 9d6deb8 commit 82f0dce

File tree

5 files changed

+3
-220
lines changed

5 files changed

+3
-220
lines changed

.circleci/config.yml

-141
This file was deleted.

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,14 @@ jobs:
9797
if: ${{ failure() }}
9898

9999
swiftlint:
100-
name: Lint code with Swiftlint
100+
name: Lint code with SwiftLint
101101
runs-on: macos-latest
102102

103103
steps:
104104
- name: Checkout
105105
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
106106

107-
- name: Run Swiftlint
107+
- name: Run SwiftLint
108108
run: swiftlint lint --reporter github-actions-logging
109109

110110
- name: Cancel wokflow on failure

fastlane/Fastfile

+1-41
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,6 @@
11
default_platform :ios
22

33
platform :ios do
4-
5-
before_all do
6-
setup_circle_ci if defined? setup_circle_ci
7-
end
8-
9-
desc "Run code linter"
10-
lane :lint do
11-
swiftlint(
12-
mode: :lint,
13-
config_file: '.swiftlint.yml',
14-
reporter: 'emoji',
15-
raise_if_swiftlint_error: true
16-
)
17-
end
18-
19-
desc "Runs all the tests"
20-
lane :test do |options|
21-
scheme = options[:scheme]
22-
device = options[:device]
23-
scan(
24-
scheme: scheme,
25-
device: device,
26-
clean: true,
27-
skip_build: true,
28-
code_coverage: true
29-
)
30-
end
31-
32-
desc "Cocoapods library lint"
33-
lane :pod_lint do
34-
pod_lib_lint(verbose: false, allow_warnings: true, platforms: 'ios,osx,tvos')
35-
end
36-
37-
desc "Runs all the tests in a CI environment"
38-
lane :ci do
39-
# TODO: Run rest of platforms
40-
lint
41-
test
42-
end
43-
444
desc "Tags the release and pushes the Podspec to CocoaPods"
455
lane :release do
466
perform_release target: 'Auth0.iOS'
@@ -74,4 +34,4 @@ platform :ios do
7434
File.write("#{docs_dir}/index.html", redirect_file)
7535
end
7636
end
77-
end
37+
end

fastlane/README.md

-32
Original file line numberDiff line numberDiff line change
@@ -15,38 +15,6 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do
1515

1616
## iOS
1717

18-
### ios lint
19-
20-
```sh
21-
[bundle exec] fastlane ios lint
22-
```
23-
24-
Run code linter
25-
26-
### ios test
27-
28-
```sh
29-
[bundle exec] fastlane ios test
30-
```
31-
32-
Runs all the tests
33-
34-
### ios pod_lint
35-
36-
```sh
37-
[bundle exec] fastlane ios pod_lint
38-
```
39-
40-
Cocoapods library lint
41-
42-
### ios ci
43-
44-
```sh
45-
[bundle exec] fastlane ios ci
46-
```
47-
48-
Runs all the tests in a CI environment
49-
5018
### ios release
5119

5220
```sh

fastlane/Scanfile

-4
This file was deleted.

0 commit comments

Comments
 (0)