Skip to content

Commit

Permalink
ids
Browse files Browse the repository at this point in the history
  • Loading branch information
SiskaPavel committed Oct 25, 2023
1 parent 5b7d986 commit 1666dce
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/stage0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,24 @@ jobs:
image: ghcr.io/siskapavel/docker_image:ol9
steps:
- uses: actions/checkout@v3
- name: test
run: cat /etc/os-release
- name: ls
run: ls
- name: files
run: find .
- name: Check clang-format
run: find . -type f -regextype posix-egrep -regex '.*.(hpp|cpp)$' -print0 | xargs -0 clang-format --dry-run --Werror --style=file
build_stage:
runs-on: ubuntu-latest
needs: test_stage
container:
image: ghcr.io/siskapavel/docker_image:ol9
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: autoreconf
run: autoreconf -i
- name: configure
run: ./configure --with-raw --with-pcap
- name: make
run: make
- name: make rpm
run: make-rpm


0 comments on commit 1666dce

Please sign in to comment.