mirror of
https://github.com/open-goal/jak-project
synced 2026-05-28 08:25:56 -04:00
60db0e5ef9
This updates `fmt` to the latest version and moves to just being a copy of their repo to make updating easier (no editing their cmake / figuring out which files to minimally include). The motivation for this is now that we switched to C++ 20, there were a ton of deprecated function usages that is going away in future compiler versions. This gets rid of all those warnings.
36 lines
1.1 KiB
YAML
Vendored
Generated
36 lines
1.1 KiB
YAML
Vendored
Generated
name: doc
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
# Use Ubuntu 20.04 because doxygen 1.8.13 from Ubuntu 18.04 is broken.
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
|
|
|
|
- name: Add ubuntu mirrors
|
|
run: |
|
|
# Github Actions caching proxy is at times unreliable
|
|
# see https://github.com/actions/runner-images/issues/7048
|
|
printf 'http://azure.archive.ubuntu.com/ubuntu\tpriority:1\n' | sudo tee /etc/apt/mirrors.txt
|
|
curl http://mirrors.ubuntu.com/mirrors.txt | sudo tee --append /etc/apt/mirrors.txt
|
|
sudo sed -i 's~http://azure.archive.ubuntu.com/ubuntu/~mirror+file:/etc/apt/mirrors.txt~' /etc/apt/sources.list
|
|
|
|
- name: Create Build Environment
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install doxygen python3-virtualenv
|
|
sudo npm install -g less clean-css
|
|
cmake -E make_directory ${{runner.workspace}}/build
|
|
|
|
- name: Build
|
|
working-directory: ${{runner.workspace}}/build
|
|
env:
|
|
KEY: ${{secrets.KEY}}
|
|
run: $GITHUB_WORKSPACE/support/build-docs.py
|