Skip to content

Commit

Permalink
Merge pull request #115 from touchlab/gv/version-bump
Browse files Browse the repository at this point in the history
Version Bump
  • Loading branch information
faogustavo authored Aug 23, 2024
2 parents 457b645 + effe7c7 commit 6ae0eb1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
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

0 comments on commit 6ae0eb1

Please sign in to comment.