-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
2,821 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Copyright (C) Markus Franz Xaver Johannes Oberhumer | ||
|
||
# note: GitHub Actions runner images are frequently updated, and | ||
# unfortunately this sometimes breaks builds in mysterious ways... | ||
# see https://github.com/actions/runner-images.git | ||
|
||
name: CI | ||
|
||
on: [push, workflow_dispatch] | ||
|
||
env: | ||
CMAKE_REQUIRED_QUIET: 'OFF' | ||
CMAKE_VERBOSE_MAKEFILE: 'ON' | ||
CTEST_OUTPUT_ON_FAILURE: 'ON' | ||
DEBIAN_FRONTEND: noninteractive | ||
UPX_CMAKE_BUILD_FLAGS: --verbose | ||
UPX_CMAKE_CONFIG_FLAGS: -Wdev --warn-uninitialized | ||
UPX_CONFIG_HAVE_WORKING_BUILD_RPATH: 'ON' | ||
UPX_DEBUG_TEST_FLOAT_DIVISION_BY_ZERO: 1 | ||
UPX_DEBUG_TEST_LIBC_QSORT: 1 | ||
ZSTD_CLEVEL: 9 | ||
# 2024-08-17 | ||
ZIG_DIST_VERSION: 0.14.0-dev.1166+bb7050106 | ||
|
||
jobs: | ||
build-doc: | ||
name: Rebuild stubs | ||
runs-on: ubuntu-latest | ||
container: ubuntu:24.04 | ||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: false | ||
fetch-depth: 0 | ||
|
||
- name: Install packages | ||
run: | | ||
apt install --yes doxygen graphviz | ||
- name: Build docs | ||
run: | | ||
make -C doc clean all | ||
if ! git diff --quiet; then git diff || true; fi # ignore diff error | ||
doxygen doc/doxygen-file | ||
- uses: DenverCoder1/doxygen-github-pages-action@v2.0.0 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.