Skip to content

Commit

Permalink
Update macOS runner to version 12 (#86)
Browse files Browse the repository at this point in the history
* Update macOS runner to version 12

* Update tensorflow to 2.15
  • Loading branch information
ekrich authored Jan 15, 2024
1 parent 700b094 commit 5ded3c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-11]
os: [ubuntu-20.04, macos-12]
java: [ '11', '17' ]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Setup (Linux)
if: startsWith(matrix.os, 'ubuntu')
run: |
curl -fsSL https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-2.12.0.tar.gz \
curl -fsSL https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-2.15.0.tar.gz \
-o ~/libtensorflow.tar.gz
mkdir -p ~/tensorflow && tar -xzf ~/libtensorflow.tar.gz -C ~/tensorflow
- name: Setup (macOS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import org.ekrich.tensorflow.unsafe.tensorflowEnums._

class TensorflowTest {

val tfVersion = "2.12"
val tfVersion = "2.15"

type DeallocateTensor = CFuncPtr3[Ptr[Byte], CSize, Ptr[Byte], Unit]

Expand Down

0 comments on commit 5ded3c7

Please sign in to comment.