Add doxygen
Some checks failed
Build Linux Containers / build-and-push-mingw-image (push) Failing after 4m58s
Build Linux Containers / build-and-push-doxygen-image (push) Failing after 5m38s
Build Linux Containers / build-and-push-linux-image (linux-riscv64) (push) Failing after 2m54s
Build Linux Containers / build-and-push-linux-image (linux-ppc) (push) Failing after 3m42s
Build Linux Containers / build-and-push-linux-image (linux-x86) (push) Successful in 2m14s
Build Linux Containers / build-and-push-linux-image (linux-x64) (push) Successful in 2m14s
Build Linux Containers / build-and-push-linux-image (linux-arm64) (push) Failing after 3h13m24s
Build Linux Containers / build-and-push-linux-image (linux-arm) (push) Failing after 3h13m25s
Some checks failed
Build Linux Containers / build-and-push-mingw-image (push) Failing after 4m58s
Build Linux Containers / build-and-push-doxygen-image (push) Failing after 5m38s
Build Linux Containers / build-and-push-linux-image (linux-riscv64) (push) Failing after 2m54s
Build Linux Containers / build-and-push-linux-image (linux-ppc) (push) Failing after 3m42s
Build Linux Containers / build-and-push-linux-image (linux-x86) (push) Successful in 2m14s
Build Linux Containers / build-and-push-linux-image (linux-x64) (push) Successful in 2m14s
Build Linux Containers / build-and-push-linux-image (linux-arm64) (push) Failing after 3h13m24s
Build Linux Containers / build-and-push-linux-image (linux-arm) (push) Failing after 3h13m25s
This commit is contained in:
@@ -6,6 +6,7 @@ env:
|
|||||||
GITEA_DOMAIN: git.tesses.org
|
GITEA_DOMAIN: git.tesses.org
|
||||||
GITEA_REGISTRY_USER: tesses50
|
GITEA_REGISTRY_USER: tesses50
|
||||||
RESULT_MINGW_IMAGE_NAME: tesses50/global-containers-mingw
|
RESULT_MINGW_IMAGE_NAME: tesses50/global-containers-mingw
|
||||||
|
RESULT_DOXYGEN_IMAGE_NAME: tesses50/global-containers-doxygen
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-push-mingw-image:
|
build-and-push-mingw-image:
|
||||||
@@ -28,6 +29,26 @@ jobs:
|
|||||||
file: ./Dockerfile.mingw
|
file: ./Dockerfile.mingw
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ env.GITEA_DOMAIN }}/${{ env.RESULT_MINGW_IMAGE_NAME }}:latest
|
tags: ${{ env.GITEA_DOMAIN }}/${{ env.RESULT_MINGW_IMAGE_NAME }}:latest
|
||||||
|
build-and-push-doxygen-image:
|
||||||
|
runs-on: fw13-ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
- name: Log in to registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.GITEA_DOMAIN }}
|
||||||
|
username: ${{ env.GITEA_REGISTRY_USER }}
|
||||||
|
password: ${{ secrets.PACKAGE_AND_BREW }}
|
||||||
|
- name: Publish mingw image
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: ./Dockerfile.doxygen
|
||||||
|
push: true
|
||||||
|
tags: ${{ env.GITEA_DOMAIN }}/${{ env.RESULT_DOXYGEN_IMAGE_NAME }}:latest
|
||||||
build-and-push-linux-image:
|
build-and-push-linux-image:
|
||||||
# The 'container' tag replaces the runner OS; the job runs INSIDE this image
|
# The 'container' tag replaces the runner OS; the job runs INSIDE this image
|
||||||
strategy:
|
strategy:
|
||||||
@@ -41,7 +62,7 @@ jobs:
|
|||||||
- imageName: linux-ppc
|
- imageName: linux-ppc
|
||||||
- imageName: linux-riscv64
|
- imageName: linux-riscv64
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: fw13-ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|||||||
11
Dockerfile.doxygen
Normal file
11
Dockerfile.doxygen
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
FROM docker.gitea.com/runner-images:ubuntu-24.04
|
||||||
|
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
RUN apt-get update -y && apt-get install -y \
|
||||||
|
doxygen \
|
||||||
|
graphviz \
|
||||||
|
texlive-latex-base \
|
||||||
|
texlive-latex-recommended \
|
||||||
|
texlive-fonts-recommended \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
Reference in New Issue
Block a user