Skip to content

Commit

Permalink
Fix cd
Browse files Browse the repository at this point in the history
  • Loading branch information
rodarima committed Dec 29, 2023
1 parent ea8e026 commit e920d21
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,20 +145,16 @@ jobs:
- name: Install dependencies
run: sudo apt install -y libfltk1.3-dev libssl-dev xvfb x11-apps x11-utils imagemagick
- name: autogen
run: ./autogen.sh
- name: mkdir build
run: mkdir build
- name: cd build
run: cd build
- name: configure
run: ../configure --enable-html-tests
- name: make
run: make
- name: make check
run: make check || true
run: |
./autogen.sh
mkdir build
cd build
../configure --enable-html-tests
make
make check || true
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: upload-html-test-results
path: |
test/html
build/test/html

0 comments on commit e920d21

Please sign in to comment.