Skip to content

Commit

Permalink
- Attempt to fix an issue with the test program library version not m…
Browse files Browse the repository at this point in the history
…atching 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.
  • Loading branch information
vonnieda committed Apr 3, 2023
1 parent 4c69303 commit 4400ee1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
linux_arm64:
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-20.04]
arch: [arm64]

# Currently runs on Jason's Mac using a Github self hosted runner because
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
linux_x86_64:
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-20.04]
arch: [x86_64]

runs-on: ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

cmake_minimum_required(VERSION 3.1)
project (openpnp-capture)
set(OPENPNP_CAPTURE_LIB_VERSION "0.0.24" CACHE STRING "openpnp-capture library version")
set(OPENPNP_CAPTURE_LIB_SOVERSION "0.0.24" CACHE STRING "openpnp-capture library soversion")
set(OPENPNP_CAPTURE_LIB_VERSION "0.0.26" CACHE STRING "openpnp-capture library version")
set(OPENPNP_CAPTURE_LIB_SOVERSION "0" CACHE STRING "openpnp-capture library soversion")

# make sure the libjpegturbo is compiled with the
# position independent flag -fPIC
Expand Down

0 comments on commit 4400ee1

Please sign in to comment.