diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-04-03 20:07:08 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-04-03 20:07:08 +0300 |
commit | b391858790d19a5e91efc824a3329350bc3928d9 (patch) | |
tree | c02dddaafb1d14c4e12e9a56b5a38aa5c7417cdf /.github | |
parent | 9f334bb0665200534c672a89eef358a66da092cd (diff) | |
download | sciteco-b391858790d19a5e91efc824a3329350bc3928d9.tar.gz |
the tutorial is now built along with all other HTML documents if --enable-html-docs
* `--enable-html-manual` renamed to `--enable-html-docs`.
* It's also uploaded to the website and linked to in README.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 6 | ||||
-rw-r--r-- | .github/workflows/nightly.yml | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ea5e8c2..6eeb38f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: MALLOC_REPLACEMENT: ${{ matrix.interface == 'ncurses' && 'no' || 'check' }} run: | autoreconf -i - ./configure --with-interface=${{ matrix.interface }} --enable-debug --enable-html-manual \ + ./configure --with-interface=${{ matrix.interface }} --enable-debug --enable-html-docs \ --enable-malloc-replacement=$MALLOC_REPLACEMENT ${{ matrix.compiler }} # NOTE: xvfb-run emulates an XServer and is required when building @@ -81,7 +81,7 @@ jobs: CXX: clang++ run: | autoreconf -i - ./configure --with-interface=ncurses --enable-debug --enable-html-manual + ./configure --with-interface=ncurses --enable-debug --enable-html-docs - run: make - run: sudo make install @@ -128,7 +128,7 @@ jobs: PDCURSES_CFLAGS: -I/mingw32/include/pdcurses/ run: | autoreconf -i - ./configure --with-interface=pdcurses-gui --enable-debug --enable-html-manual + ./configure --with-interface=pdcurses-gui --enable-debug --enable-html-docs - run: make - run: make install diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index ebaa30b..16527eb 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -116,7 +116,7 @@ jobs: # with `installer -pkg -target`. run: | autoreconf -i - ./configure --with-interface=ncurses --enable-static-executables --enable-html-manual \ + ./configure --with-interface=ncurses --enable-static-executables --enable-html-docs \ --with-scitecodatadir=../share/sciteco - name: make @@ -222,11 +222,11 @@ jobs: autoreconf -i mkdir build-wingui build-wincon (cd build-wingui - ../configure --with-interface=pdcurses-gui --enable-html-manual --program-prefix=g \ + ../configure --with-interface=pdcurses-gui --enable-html-docs --program-prefix=g \ --with-scitecodatadir=. \ PDCURSES_LIBS="-lpdcurses_wingui -lgdi32 -lcomdlg32 -lwinmm") (cd build-wincon - ../configure --with-interface=pdcurses --enable-html-manual \ + ../configure --with-interface=pdcurses --enable-html-docs \ --with-scitecodatadir=. \ PDCURSES_LIBS="-lpdcurses_wincon -lgdi32 -lwinmm") @@ -308,7 +308,7 @@ jobs: LDFLAGS: -flto run: | autoreconf -i - ./configure --with-interface=gtk --enable-html-manual \ + ./configure --with-interface=gtk --enable-html-docs \ --with-scitecodatadir=. - name: make |