Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Quafadas committed Nov 7, 2023
1 parent eab7965 commit 56c5f51
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ jobs:

- name: Make target directories
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
run: mkdir -p shim/js/target shim/jvm/target core/native/target core/js/target core/jvm/target shim/native/target project/target
run: mkdir -p core/native/target core/js/target core/jvm/target project/target

- name: Compress target directories
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
run: tar cf targets.tar shim/js/target shim/jvm/target core/native/target core/js/target core/jvm/target shim/native/target project/target
run: tar cf targets.tar core/native/target core/js/target core/jvm/target project/target

- name: Upload target directories
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
Expand Down
1 change: 0 additions & 1 deletion core/js/src/main/scala/vecxt/array.extensions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import vecxt.Limits.Limit
import vecxt.Retentions.Retention

import scala.scalajs.js
import scala.scalajs.js.annotation.JSBracketAccess
import scala.scalajs.js.typedarray.Float64Array
import scala.util.chaining.*

Expand Down
2 changes: 0 additions & 2 deletions core/jvm-native/src/main/scala/vecxt/array.extensions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ import vecxt.BoundsCheck
import vecxt.Limits.Limit
import vecxt.Retentions.Retention

import scala.util.chaining.*

extension (vec: Array[Boolean])
inline def countTrue: Int =
var sum = 0
Expand Down
2 changes: 0 additions & 2 deletions tests/jvm-native/src/test/scala/boundsCheck.scala
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

package vecxt

import scala.util.chaining.*

class BoundsCheckSuite extends munit.FunSuite:

lazy val v_fill = Array.tabulate(5)(i => i.toDouble)
Expand Down

0 comments on commit 56c5f51

Please sign in to comment.