Skip to content

Commit

Permalink
Updates (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
keynmol authored Feb 2, 2024
1 parent 1f990e7 commit f7c7299
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-12, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand All @@ -25,7 +25,7 @@ jobs:
if [ $PLATFORM == "Darwin" ]; then
echo "It's a Mac"
brew install llvm@14
brew install llvm@14 sbt
else
echo "It's a Linux"
wget https://apt.llvm.org/llvm.sh
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
scalaVersion := "3.2.2"
scalaVersion := "3.3.1"

enablePlugins(ScalaNativePlugin, BindgenPlugin)

import bindgen.interface.Binding

bindgenBindings := Seq(
Binding(
baseDirectory.value / "src" / "main" / "resources" / "scala-native" / "header.h",
"lib_check",
cImports = List("header.h")
)
"lib_check"
).withCImports(List("header.h"))
)

0 comments on commit f7c7299

Please sign in to comment.