Skip to content

Commit

Permalink
GitHub Actions: do not run the 'test' job'.
Browse files Browse the repository at this point in the history
It fails because the `clamav` daemon is not running.
The `ci.yml` file has a few lines of code that we would need to run:

```
sudo apt-get -y install clamav clamav-daemon clamav-freshclam clamav-unofficial-sigs
sudo bash -c 'echo -e "TCPSocket 3310\nLocalSocket /tmp/clamd.socket\n$(cat /etc/clamav/clamd.conf)" > /etc/clamav/clamd.conf'
sudo freshclam -l /tmp/freshclam.log
sudo systemctl start clamav-daemon.service
sudo systemctl status clamav-daemon.service
head /etc/clamav/clamd.conf
```

For installing extra packages we could use the `os-packages` input, but there is currently no hook in plone/meta for running arbitrary commands.
  • Loading branch information
mauritsvanrees committed Jun 26, 2024
1 parent 2264ff6 commit c7a4e9c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ on:
jobs:
qa:
uses: plone/meta/.github/workflows/qa.yml@main
test:
uses: plone/meta/.github/workflows/test.yml@main
with:

py-versions: '["3.8"]'
release_ready:
uses: plone/meta/.github/workflows/release_ready.yml@main
circular:
Expand Down
1 change: 0 additions & 1 deletion .meta.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ codespell_skip = "plone-*.cfg"
py_versions = "[\"3.8\"]"
jobs = [
"qa",
"test",
"release_ready",
"circular",
]

0 comments on commit c7a4e9c

Please sign in to comment.