Skip to content

Commit 912750e

Browse files
committed
WIP
1 parent b59698c commit 912750e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/ci.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22

33
on:
44
push:
5-
branches: [ main ]
5+
# branches: [ main ]
66
pull_request:
77
branches: [ main ]
88
workflow_dispatch:
@@ -27,6 +27,9 @@ jobs:
2727
with:
2828
go-version: "1.22"
2929

30+
- run: ls -l /Users/runner/work/lilliput/lilliput/deps/osx/arm64/share/OpenCV/3rdparty/lib || true
31+
- run: ls -l /Users/runner/work/lilliput/lilliput/deps/linux/arm64/share/OpenCV/3rdparty/lib || true
32+
3033
- name: Build
3134
run: go build
3235

.github/workflows/deps.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build dependencies
22

33
on:
44
push:
5-
branches: [ main ]
5+
# branches: [ main ]
66
pull_request:
77
branches: [ main ]
88
workflow_dispatch:

opencv.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
// #cgo CXXFLAGS: -std=c++11
1717
// #cgo darwin,arm64 CXXFLAGS: -I${SRCDIR}/deps/osx/arm64/include
1818
// #cgo linux,amd64 CXXFLAGS: -I${SRCDIR}/deps/linux/amd64/include
19-
// #cgo LDFLAGS: -lopencv_core -lopencv_imgcodecs -lopencv_imgproc -lsharpyuv -ljpeg -lpng -framework CoreVideo
19+
// #cgo LDFLAGS: -lopencv_core -lopencv_imgcodecs -lopencv_imgproc -lsharpyuv -ljpeg -lpng -ltegra_hal -framework CoreVideo
2020
// #cgo amd64 LDFLAGS: -lippicv
2121
// #cgo darwin,arm64 LDFLAGS: -L${SRCDIR}/deps/osx/arm64/lib -L${SRCDIR}/deps/osx/arm64/share/OpenCV/3rdparty/lib
2222
// #cgo linux,amd64 LDFLAGS: -L${SRCDIR}/deps/linux/amd64/lib -L${SRCDIR}/deps/linux/amd64/share/OpenCV/3rdparty/lib

0 commit comments

Comments
 (0)