Skip to content

Commit 4400ee1

Browse files
committed
- Attempt to fix an issue with the test program library version not matching the built library version, and additionally building the wrong library version. Attempting to fix #60 using suggestions from that thread.
- Downgrade Ubuntu from 22.04 to 20.04. This should help improve compatibility with older installs. Considered going down to ubuntu-18.04, but since that is already deprecated I'll just start receiving warnings about it immediately.
1 parent 4c69303 commit 4400ee1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
linux_arm64:
120120
strategy:
121121
matrix:
122-
os: [ubuntu-latest]
122+
os: [ubuntu-20.04]
123123
arch: [arm64]
124124

125125
# Currently runs on Jason's Mac using a Github self hosted runner because
@@ -158,7 +158,7 @@ jobs:
158158
linux_x86_64:
159159
strategy:
160160
matrix:
161-
os: [ubuntu-latest]
161+
os: [ubuntu-20.04]
162162
arch: [x86_64]
163163

164164
runs-on: ${{ matrix.os }}

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
cmake_minimum_required(VERSION 3.1)
1414
project (openpnp-capture)
15-
set(OPENPNP_CAPTURE_LIB_VERSION "0.0.24" CACHE STRING "openpnp-capture library version")
16-
set(OPENPNP_CAPTURE_LIB_SOVERSION "0.0.24" CACHE STRING "openpnp-capture library soversion")
15+
set(OPENPNP_CAPTURE_LIB_VERSION "0.0.26" CACHE STRING "openpnp-capture library version")
16+
set(OPENPNP_CAPTURE_LIB_SOVERSION "0" CACHE STRING "openpnp-capture library soversion")
1717

1818
# make sure the libjpegturbo is compiled with the
1919
# position independent flag -fPIC

0 commit comments

Comments
 (0)