Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub Actions: imporve code readability of testing-with-vlagrind.yml #3856

Merged
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
24 changes: 10 additions & 14 deletions .github/workflows/testing-with-vlagrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,13 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: update package information
run: sudo apt-get update
- name: install tools and libraries
run: sudo apt-get install valgrind pkg-config automake bash libjansson-dev libyaml-dev libseccomp-dev libxml2-dev libpcre2-dev gdb
- name: autogen.sh
run: ./autogen.sh
- name: report the version of cc
run: cc --version
- name: configure
run: ./configure --enable-debugging
- name: make
run: make CFLAGS='-g -O0'
- name: make units
run: make units VG=1

- run: sudo apt-get update
- run: sudo apt-get install valgrind pkg-config automake bash libjansson-dev libyaml-dev libseccomp-dev libxml2-dev libpcre2-dev gdb

- run: cc --version

- run: ./autogen.sh
- run: ./configure --enable-debugging
- run: make CFLAGS='-g -O0'
- run: make units VG=1