filterx: add extended tests for strptime based on previous memory lea… #140
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
name: Packages (PR / push) | |
on: | |
pull_request: | |
push: | |
jobs: | |
create-source-tarball: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout syslog-ng source | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Prepare docker image | |
run: ./dbld/rules cache-image-tarball | |
- name: Create source tarball | |
run: ./dbld/rules pkg-tarball | |
- name: Store source tarball as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: source-tarball | |
path: dbld/build/*.tar.gz | |
create-packages: | |
needs: create-source-tarball | |
uses: ./.github/workflows/create-packages.yml | |
with: | |
source-tarball-artifact-name: source-tarball | |
dbld-image-mode: cache | |
distros: '[ | |
"debian-bookworm", | |
"debian-testing", | |
"fedora-39", | |
"ubuntu-jammy" | |
]' |