Skip to content

Commit c976b5f

Browse files
authored
Migrate to internal package (#44)
1 parent 917daec commit c976b5f

File tree

142 files changed

+41
-24
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+41
-24
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches:
55
- main
66
- development
7+
- '**_baseline'
78

89
jobs:
910
build-android:
@@ -19,7 +20,7 @@ jobs:
1920
with:
2021
channel: 'stable'
2122
- name: Build example app APK
22-
run: cd example; flutter build apk
23+
run: cd splitio/example; flutter build apk
2324

2425
test-android:
2526
name: Test Android
@@ -34,11 +35,11 @@ jobs:
3435
with:
3536
channel: 'stable'
3637
- name: Run Pub Get
37-
run: flutter pub get
38+
run: cd splitio/; flutter pub get
3839
- name: Build Android
39-
run: flutter build
40+
run: cd splitio/; flutter build
4041
- name: Run Android test
41-
run: cd example/android/; gradle :splitio:testReleaseUnitTest;
42+
run: cd splitio/example/android/; gradle :splitio:testReleaseUnitTest;
4243

4344
test-ios:
4445
name: Test iOS
@@ -50,12 +51,12 @@ jobs:
5051
with:
5152
channel: 'stable'
5253
- name: Run Build iOS
53-
run: cd example/ios/; flutter build ios --no-codesign;
54+
run: cd splitio/example/ios; flutter build ios --no-codesign;
5455

5556
- name: Select Xcode
5657
uses: maxim-lobanov/setup-xcode@v1
5758
with:
5859
xcode-version: 13.2.1
5960

6061
- name: ios
61-
run: cd example/ios/; xcodebuild test -workspace "Runner.xcworkspace" -scheme "Runner" -destination "platform=iOS Simulator,name=iPhone 12,OS=latest" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO;
62+
run: cd splitio/example/ios; xcodebuild test -workspace "Runner.xcworkspace" -scheme "Runner" -destination "platform=iOS Simulator,name=iPhone 12,OS=latest" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO;

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
with:
1919
channel: 'stable'
2020
- name: Run Pub Get
21-
run: flutter pub get
21+
run: cd splitio/; flutter pub get
2222
- name: Run flutter test
23-
run: flutter test
23+
run: cd splitio/; flutter test

.gitignore

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,3 @@
1414
*.ipr
1515
*.iws
1616
.idea/
17-
18-
# The .vscode folder contains launch configuration and tasks you configure in
19-
# VS Code which you may wish to be included in version control, so this line
20-
# is commented out by default.
21-
#.vscode/
22-
23-
# Flutter/Dart/Pub related
24-
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
25-
/pubspec.lock
26-
**/doc/api/
27-
.dart_tool/
28-
.packages
29-
build/

splitio/.gitignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
12+
# IntelliJ related
13+
*.iml
14+
*.ipr
15+
*.iws
16+
.idea/
17+
18+
# The .vscode folder contains launch configuration and tasks you configure in
19+
# VS Code which you may wish to be included in version control, so this line
20+
# is commented out by default.
21+
#.vscode/
22+
23+
# Flutter/Dart/Pub related
24+
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
25+
/pubspec.lock
26+
**/doc/api/
27+
.dart_tool/
28+
.packages
29+
build/
File renamed without changes.
File renamed without changes.

README.md renamed to splitio/README.md

Lines changed: 2 additions & 2 deletions
File renamed without changes.

0 commit comments

Comments
 (0)