Skip to content

Commit

Permalink
Pinned-Dependencies are modified
Browse files Browse the repository at this point in the history
Signed-off-by: Raghavan Kanagaraj <[email protected]>
  • Loading branch information
rkanagar committed Mar 5, 2024
1 parent 779e6ce commit b26b31b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@ on:
pull_request:
branches: [ master ]

permissions: # added using https://github.com/step-security/secure-repo
contents: read

jobs:
build-gcc:
name: Build with gcc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
- name: Install Dependencies
run: sudo apt install gcc
- name: Build gcc
Expand All @@ -26,7 +29,7 @@ jobs:
name: Build with clang
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
- name: Install Dependencies
run: sudo apt install clang
- name: Build clang
Expand All @@ -37,7 +40,7 @@ jobs:
name: scan-build - Clang static analyzer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
- name: Install Dependencies
run: sudo apt install clang-tools
- name: Scan Build
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ on:
branches: [ master ]
pull_request:
branches: [ master ]
permissions: # added using https://github.com/step-security/secure-repo
contents: read

jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Install dependencies
run: |
sudo apt install clang-format-11 codespell wget git python3-pip
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@ on:
pull_request:
branches: [ master ]

permissions: # added using https://github.com/step-security/secure-repo
contents: read

jobs:
unit-test:
name: Execute C unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
- name: Install Dependencies
run: sudo apt install gcc libcmocka-dev
- name: Build
Expand All @@ -23,8 +26,8 @@ jobs:
name: Execute python wrapper unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
- uses: actions/setup-python@e9aba2c848f5ebd159c070c61ea2c4e2b122355e # v2.3.4
with:
python-version: '3.x'
- name: Install Dependencies
Expand All @@ -42,8 +45,8 @@ jobs:
name: Execute App QoS unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
- uses: actions/setup-python@e9aba2c848f5ebd159c070c61ea2c4e2b122355e # v2.3.4
with:
python-version: '3.x'
- name: Install Dependencies
Expand All @@ -55,4 +58,4 @@ jobs:
- name: Build
run: make -C lib
- name: Execute
run: LD_LIBRARY_PATH=`pwd`/lib make -C appqos test
run: LD_LIBRARY_PATH=`pwd`/lib make -C appqos test

0 comments on commit b26b31b

Please sign in to comment.