Skip to content

Commit

Permalink
Install dpi plugins before make check
Browse files Browse the repository at this point in the history
  • Loading branch information
rodarima committed Dec 30, 2023
1 parent c5669d4 commit d023fd2
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,16 @@ jobs:
- name: autogen
run: |
./autogen.sh
mkdir build
mkdir build install
cd build
../configure --enable-html-tests
../configure --prefix=$(readlink -f ../install) --enable-html-tests
make
make install
mkdir -p ~/.dillo/
cp ../install/etc/dillo/* ~/.dillo/
export DILLOBIN=$(readlink -f ../install/bin/dillo)
make check || true
cat test/html/test-suite.log || true
find test/html -type p -delete || true
- name: Archive production artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit d023fd2

Please sign in to comment.