-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Version bump and ref updates * Build and push on PR * (ci) Disable jobs * Actually disable * Store changes * Renable GitHub builds * vc-deps 1.9.0 release
- Loading branch information
1 parent
f055138
commit 1b462aa
Showing
8 changed files
with
58 additions
and
36 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
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,20 @@ | ||
name: Cleanup Docker images | ||
|
||
on: workflow_call | ||
# pull_request: | ||
# types: [closed] | ||
|
||
jobs: | ||
cleanup-pr-images: | ||
name: Clean up PR images | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: write | ||
steps: | ||
- name: Remove PR tags | ||
uses: dataaxiom/ghcr-cleanup-action@v1 | ||
with: | ||
tags: '*.pr-${{github.event.pull_request.number}}' | ||
dry-run: true | ||
validate: true | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
FROM debian:bookworm-slim | ||
MAINTAINER Seth Parker <[email protected]> | ||
LABEL org.opencontainers.image.title ci-docker (base) | ||
LABEL org.opencontainers.image.description Base system packages | ||
LABEL org.opencontainers.image.source https://github.com/educelab/ci-docker | ||
LABEL org.opencontainers.image.authors="Seth Parker <[email protected]>" | ||
LABEL org.opencontainers.image.title="ci-docker (base)" | ||
LABEL org.opencontainers.image.description="Base system packages" | ||
LABEL org.opencontainers.image.source="https://github.com/educelab/ci-docker" | ||
|
||
# Install apt sources | ||
RUN echo 'deb http://deb.debian.org/debian bookworm-backports main' > /etc/apt/sources.list.d/backports.list \ | ||
|
@@ -56,9 +56,9 @@ RUN apt-get install --fix-missing --fix-broken -y \ | |
&& apt-get purge && rm -rf /var/lib/apt/lists/* | ||
|
||
# Install Qt6 | ||
RUN curl -O -L https://download.qt.io/archive/qt/6.6/6.6.1/single/qt-everywhere-src-6.6.1.tar.xz \ | ||
&& tar -xf qt-everywhere-src-6.6.1.tar.xz \ | ||
&& cd qt-everywhere-src-6.6.1/ \ | ||
RUN curl -O -L https://download.qt.io/archive/qt/6.7/6.7.2/single/qt-everywhere-src-6.7.2.tar.xz \ | ||
&& tar -xf qt-everywhere-src-6.7.2.tar.xz \ | ||
&& cd qt-everywhere-src-6.7.2/ \ | ||
&& ./configure -opensource -nomake examples -nomake tests -bundled-xcb-xinput -confirm-license \ | ||
&& cmake --build . --parallel \ | ||
&& cmake --install . \ | ||
|
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
FROM ghcr.io/educelab/ci-docker:base.latest | ||
MAINTAINER Seth Parker <[email protected]> | ||
LABEL org.opencontainers.image.title ci-docker (dynamic) | ||
LABEL org.opencontainers.image.description Dynamic vc-deps libraries | ||
LABEL org.opencontainers.image.source https://github.com/educelab/ci-docker | ||
LABEL org.opencontainers.image.authors="Seth Parker <[email protected]>" | ||
LABEL org.opencontainers.image.title="ci-docker (dynamic)" | ||
LABEL org.opencontainers.image.description="Dynamic vc-deps libraries" | ||
LABEL org.opencontainers.image.source="https://github.com/educelab/ci-docker" | ||
|
||
# Install vc-deps (dynamic) | ||
COPY vc-deps/ /vc-deps/ | ||
|
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
FROM ghcr.io/educelab/ci-docker:base.latest | ||
MAINTAINER Seth Parker <[email protected]> | ||
LABEL org.opencontainers.image.title ci-docker (static) | ||
LABEL org.opencontainers.image.description Static vc-deps libraries | ||
LABEL org.opencontainers.image.source https://github.com/educelab/ci-docker | ||
LABEL org.opencontainers.image.authors="Seth Parker <[email protected]>" | ||
LABEL org.opencontainers.image.title="ci-docker (static)" | ||
LABEL org.opencontainers.image.description="Static vc-deps libraries" | ||
LABEL org.opencontainers.image.source="https://github.com/educelab/ci-docker" | ||
|
||
# Install vc-deps (static) | ||
COPY vc-deps/ /vc-deps/ | ||
|
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
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
Submodule vc-deps
updated
8 files
+18 −0 | .gitlab-ci.yml | |
+2 −2 | CMakeLists.txt | |
+2 −2 | cmake/BuildBoost.cmake | |
+2 −2 | cmake/BuildITK.cmake | |
+4 −2 | cmake/BuildOpenCV.cmake | |
+2 −2 | cmake/BuildSpdlog.cmake | |
+2 −2 | cmake/BuildVTK.cmake | |
+2 −2 | cmake/BuildZLIB.cmake |