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

Version Bump #115

Merged
merged 10 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 2 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,11 @@ jobs:
ORG_GRADLE_PROJECT_SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }}

- name: Zip Stately Collections Build Results
if: always()
run: zip stately-connections-bulid.zip deprecated/stately-collections/build/reports/tests/* -r

- name: Upload Stately Collections Build Results
if: always()
uses: actions/upload-artifact@v2
with:
name: stately-connections-bulid
path: stately-connections-bulid.zip
name: deprecated-test-results
path: deprecated/**/build/reports/tests/
env:
GRADLE_OPTS: -Dkotlin.incremental=false -Dorg.gradle.jvmargs="-Xmx3g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:MaxMetaspaceSize=512m"
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ class LinkedListTest {
*/
@Test
fun testBasicThreads() {
val LOOPS = 2500
val LOOPS = 500
val ops = ThreadOperations { SharedLinkedList<TestData>() }
val ll = SharedLinkedList<TestData>().freeze()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class IsoStateTest {
val ops = ThreadOperations {}

val isoList = IsolateState { mutableListOf<SomeData>() }
repeat(100_000) { rcount ->
repeat(5_000) { rcount ->
ops.exe {
isoList.access { l ->
l.add(SomeData("arst $rcount"))
Expand All @@ -31,7 +31,7 @@ class IsoStateTest {
l.size
}

assertEquals(100_000, lsize)
assertEquals(5_000, lsize)
}


Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ SONATYPE_HOST=DEFAULT
RELEASE_SIGNING_ENABLED=true

GROUP=co.touchlab
VERSION_NAME=2.0.7
VERSION_NAME=2.1.0

POM_NAME=Stately
POM_DESCRIPTION=Multithreaded Kotlin Multiplatform Utilities
Expand Down
Loading