Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge master into Database transactions and small update in plugin.serialization #266

Open
wants to merge 53 commits into
base: database-transactions
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
4a434a5
added DocumentSnapshot.dataMap() (fixes #186)
suntrix Aug 17, 2021
f490224
updated AGP plugin & Firebase SDKs
suntrix Aug 28, 2021
fba539d
updated Kotlin to 1.5.30
suntrix Aug 28, 2021
700858b
PR feedback
suntrix Sep 1, 2021
1788270
Gradle update
suntrix Sep 1, 2021
5b54af7
Merge pull request #214 from suntrix/document-snapshot-entries
Reedyuk Sep 1, 2021
6d44c70
Merge branch 'master' into updates
suntrix Sep 1, 2021
e9dc4b2
Merge pull request #215 from suntrix/updates
Reedyuk Sep 7, 2021
e126af8
Bumped version and updated readme
Reedyuk Sep 7, 2021
b66b77f
➕ Add iosSimulatorArm64 target, introduced in KMM 1.5.30
pauldavies83 Sep 17, 2021
fa7a118
Removed direct reference of ktx to be in-line with the other android …
Reedyuk Sep 22, 2021
f938002
Merge branch 'master' into add_ios_native_targets
pauldavies83 Sep 23, 2021
2c207d1
♻️ replicate config to other modules
pauldavies83 Sep 23, 2021
1a4a7d2
Merge remote-tracking branch 'origin/add_ios_native_targets' into add…
pauldavies83 Sep 23, 2021
f340a86
🤦 remove erroneous `$`
pauldavies83 Sep 23, 2021
93df75c
Merge pull request #220 from pauldavies83/add_ios_native_targets
Reedyuk Sep 23, 2021
6ac7a83
Add FirebaseAuth.signInWithEmailLink() API (#212)
shepeliev Oct 4, 2021
f76978b
Added properties to skip iostarget and skip ios tests.
Reedyuk Oct 4, 2021
54284f9
Adjusted tests to not use skip variable.
Reedyuk Oct 4, 2021
2aa9f0d
Added missing property.
Reedyuk Oct 4, 2021
3a17171
added logging
Reedyuk Oct 4, 2021
2d603e7
Added different approach to cancel ios tests
Reedyuk Oct 4, 2021
1612897
Disable test tasks in gradle to skip ios tests
Reedyuk Oct 5, 2021
f050896
Disable test tasks in gradle to skip ios tests
Reedyuk Oct 5, 2021
81a3c2b
Moved skip test to the outer scope of a project.
Reedyuk Oct 5, 2021
14f926e
Added ignore case for task check
Reedyuk Oct 5, 2021
2e49afd
fixed typo
Reedyuk Oct 5, 2021
879ca60
Added fix for android tests
Reedyuk Oct 5, 2021
8737a7d
Adjust workflow for debugging
Reedyuk Oct 5, 2021
e3fa770
bump version
Reedyuk Oct 5, 2021
7b48bea
Adjusted workflow
Reedyuk Oct 5, 2021
e31ae19
Adjusted workflow
Reedyuk Oct 5, 2021
69fbf24
Adjusted workflow
Reedyuk Oct 5, 2021
38d8570
Added Independant publish tasks
Reedyuk Oct 5, 2021
dbf2d76
Added alpha tag
Reedyuk Oct 5, 2021
1b4d997
Gl 861 add ability to skip ios tests for firebase (#230)
Reedyuk Oct 5, 2021
e020ca2
Merge branch 'master' into GL-855-fix-upload-issue-with-firebase
Reedyuk Oct 5, 2021
e912c39
Removed debug trigger
Reedyuk Oct 5, 2021
ef62cb1
Merge pull request #231 from GitLiveApp/GL-855-fix-upload-issue-with-…
Reedyuk Oct 5, 2021
f07215d
Added comment on skip test.
Reedyuk Oct 5, 2021
124d490
Merge pull request #232 from GitLiveApp/1.4.3
Reedyuk Oct 5, 2021
8d28273
updated Firebase SDKs & dependencies (#228)
suntrix Oct 11, 2021
9ce9222
Add ServerTimestampBehavior in Firestore module (#246)
shepeliev Oct 30, 2021
7af9843
removed DocumentSnapshot.dataMap() (#250)
suntrix Nov 18, 2021
a1b99ce
fix compilation with xcode 13 (#244)
muwasi Nov 23, 2021
0ff3444
updated Firebase JS SDKs (#254)
suntrix Nov 23, 2021
4a1ba94
updated Firebase SDKs (#252)
suntrix Dec 13, 2021
e48927c
allow to get database root reference
pauminku Dec 29, 2021
f143089
Merge remote-tracking branch 'origin/master' into database-transactions
pauminku Dec 30, 2021
a70fdd2
version of firebase-database serialization plugin updated to be the s…
pauminku Dec 30, 2021
d408593
firebase version updated
pauminku Jan 29, 2022
7201b37
doTransaction fix
pauminku Jan 29, 2022
73c9e50
Merge branch 'databaseRootRef' into database-transactions
pauminku Jan 29, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Disable test tasks in gradle to skip ios tests
  • Loading branch information
Reedyuk committed Oct 5, 2021
commit f05089638667aa5e524cb15ef929ce7eacf55cc5
12 changes: 6 additions & 6 deletions firebase-auth/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,6 @@ kotlin {
}

val supportIosTarget = project.property("skipIosTarget") != "true"
val runIosTests = project.property("firebase-auth.skipIosTests") != "true"

println("supportIosTarget: $supportIosTarget runIosTests $runIosTests")
if (supportIosTarget) {

fun nativeTargetConfig(): KotlinNativeTarget.() -> Unit = {
Expand Down Expand Up @@ -183,10 +180,13 @@ kotlin {

val jsMain by getting
}
}

if (!runIosTests) {
tasks.forEach {
if (it.name.contains("ios") && it.name.contains("test")) { it.enabled = false }
if (project.property("firebase-auth.skipIosTests") == "true") {
tasks.forEach {
if (it.name.contains("ios") && it.name.contains("test")) {
println("Skipping ${it.name}")
it.enabled = false
}
}
}
Expand Down