Skip to content

Commit

Permalink
(github) try to fix issues in build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljprice committed Nov 29, 2024
1 parent 48f5304 commit 68b871b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,20 @@ jobs:
- name: compile giza (Mac OS)
if: runner.os == 'macOS'
run: |
echo "PKG_CONFIG_PATH=$PKG_CONFIG_PATH"
pkg-config --version
echo "Checking cairo:"
pkg-config --cflags cairo
pkg-config --libs cairo
echo "Checking paths:"
pkg-config --variable=includedir cairo
pkg-config --variable=libdir cairo
./configure --prefix=/opt/homebrew
make install
- name: compile giza (Linux)
if: runner.os == 'Linux'
run: |
./configure
make install
make
sudo make install

0 comments on commit 68b871b

Please sign in to comment.