Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
gcc:
image: ghcr.io/davidcozens/cpputest:sha-6acaccf
image: ghcr.io/davidcozens/cpputest:sha-18f19e1
volumes:
- ..:/workspaces/SolidSyslog:cached
- ${SSH_AUTH_SOCK:-/dev/null}:/ssh-agent
Expand Down Expand Up @@ -61,7 +61,7 @@ services:
command: sleep infinity

clang:
image: ghcr.io/davidcozens/cpputest-clang:sha-6ea3f95
image: ghcr.io/davidcozens/cpputest-clang:sha-0385cea
volumes:
- ..:/workspaces/SolidSyslog:cached
- ${SSH_AUTH_SOCK:-/dev/null}:/ssh-agent
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
contents: read
checks: write
container:
image: ghcr.io/davidcozens/cpputest:sha-6acaccf
image: ghcr.io/davidcozens/cpputest:sha-18f19e1
options: --user root
env:
GIT_CONFIG_COUNT: 1
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
contents: read
checks: write
container:
image: ghcr.io/davidcozens/cpputest-clang:sha-6ea3f95
image: ghcr.io/davidcozens/cpputest-clang:sha-0385cea
options: --user root
env:
GIT_CONFIG_COUNT: 1
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
contents: read
checks: write
container:
image: ghcr.io/davidcozens/cpputest:sha-6acaccf
image: ghcr.io/davidcozens/cpputest:sha-18f19e1
options: --user root
env:
GIT_CONFIG_COUNT: 1
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
pages: write
id-token: write
container:
image: ghcr.io/davidcozens/cpputest:sha-6acaccf
image: ghcr.io/davidcozens/cpputest:sha-18f19e1
options: --user root
env:
GIT_CONFIG_COUNT: 1
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
tidy:
runs-on: ubuntu-latest
container:
image: ghcr.io/davidcozens/cpputest:sha-6acaccf
image: ghcr.io/davidcozens/cpputest:sha-18f19e1
options: --user root
env:
GIT_CONFIG_COUNT: 1
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
format:
runs-on: ubuntu-latest
container:
image: ghcr.io/davidcozens/cpputest:sha-6acaccf
image: ghcr.io/davidcozens/cpputest:sha-18f19e1
options: --user root
env:
GIT_CONFIG_COUNT: 1
Expand All @@ -269,7 +269,7 @@ jobs:
cppcheck:
runs-on: ubuntu-latest
container:
image: ghcr.io/davidcozens/cpputest:sha-6acaccf
image: ghcr.io/davidcozens/cpputest:sha-18f19e1
options: --user root
env:
GIT_CONFIG_COUNT: 1
Expand Down
4 changes: 2 additions & 2 deletions docs/containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Image | Tag | Used by |
|---|---|---|
| `ghcr.io/davidcozens/cpputest` | `sha-e7aa8a1` | devcontainer (`gcc` service), all CI jobs except clang |
| `ghcr.io/davidcozens/cpputest-clang` | `sha-6ea3f95` | `clang` compose service, `clang-build-and-test` CI job |
| `ghcr.io/davidcozens/cpputest` | `sha-18f19e1` | devcontainer (`gcc` service), all CI jobs except clang |
| `ghcr.io/davidcozens/cpputest-clang` | `sha-0385cea` | `clang` compose service, `clang-build-and-test` CI job |
| `balabit/syslog-ng` | `latest` | `syslog-ng` service — BDD test oracle |
| `ghcr.io/davidcozens/behave` | `sha-b871b1c` | `behave` service — Debian trixie + Python 3.12 + Behave for BDD scenarios |

Expand Down
Loading