Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
Larhzu committed Dec 27, 2024
1 parent d166d6d commit 2e3ea03
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
os: [macos-latest]
build_system: [autotools, cmake]
build_system: [cmake]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
Expand Down
36 changes: 20 additions & 16 deletions build-aux/ci_build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -224,13 +224,15 @@ then
# Build the project
make

echo
echo DEBUG
echo
otool -L src/liblzma/.libs/liblzma.5.dylib
echo
echo DEBUG
echo
if [ -f src/liblzma/.libs/liblzma.5.dylib ]; then
echo
echo DEBUG
echo
otool -L src/liblzma/.libs/liblzma.5.dylib
echo
echo DEBUG
echo
fi
;;
cmake)
cd "$DEST_DIR"
Expand All @@ -256,15 +258,17 @@ then
cmake "$SRC_DIR/CMakeLists.txt" -B "$DEST_DIR" $EXTRA_OPTIONS -DXZ_CHECKS="$CHECK_TYPE" -G "Unix Makefiles"
cmake --build "$DEST_DIR"

echo
echo DEBUG
echo
ls -ld liblzma*
echo
otool -L liblzma.dylib
echo
echo DEBUG
echo
if [ -f liblzma.dylib ]; then
echo
echo DEBUG
echo
ls -ld liblzma*
echo
otool -L liblzma.dylib
echo
echo DEBUG
echo
fi
;;
esac
fi
Expand Down

0 comments on commit 2e3ea03

Please sign in to comment.