-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cleanup: valgrind not used in fast_test
- Loading branch information
1 parent
9b1f7f3
commit feccf12
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# X-SPDX-Copyright-Text: (c) Copyright 2023 Advanced Micro Devices, Inc. | ||
|
||
name: "Build and Test cns-sfptpd" | ||
name: "Fast checks" | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build_and_test: | ||
name: Run make and make test | ||
name: Unit tests and build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: sfptpd_checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
path: cns-sfptpd | ||
path: sfptpd-src | ||
|
||
- name: Install SFPTPD Deps | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libmnl-dev valgrind | ||
sudo apt-get install -y libmnl-dev | ||
- name: build | ||
run: | | ||
cd $GITHUB_WORKSPACE/cns-sfptpd | ||
cd $GITHUB_WORKSPACE/sfptpd-src | ||
make -j 2 | ||
- name: test | ||
run: | | ||
cd $GITHUB_WORKSPACE/cns-sfptpd | ||
cd $GITHUB_WORKSPACE/sfptpd-src | ||
make -j 2 fast_test |