Skip to content
Closed
Show file tree
Hide file tree
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
8 changes: 0 additions & 8 deletions .github/workflows/freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ jobs:
steps:
- name: Checkout repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
repository: 'intel/intel-ipsec-mb'

- name: Build
uses: vmactions/freebsd-vm@35a5b20a98476a681c7576a344775be7e7f77f06 # v1.0.6
Expand All @@ -37,8 +35,6 @@ jobs:
steps:
- name: Checkout repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
repository: 'intel/intel-ipsec-mb'

- name: Build
uses: vmactions/freebsd-vm@35a5b20a98476a681c7576a344775be7e7f77f06 # v1.0.6
Expand All @@ -57,8 +53,6 @@ jobs:
steps:
- name: Checkout repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
repository: 'intel/intel-ipsec-mb'

- name: Clang Release Build
uses: vmactions/freebsd-vm@35a5b20a98476a681c7576a344775be7e7f77f06 # v1.0.6
Expand All @@ -83,8 +77,6 @@ jobs:
steps:
- name: Checkout repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
repository: 'intel/intel-ipsec-mb'

- name: Release build with GCC
uses: vmactions/freebsd-vm@35a5b20a98476a681c7576a344775be7e7f77f06 # v1.0.6
Expand Down
42 changes: 21 additions & 21 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:

steps:
- name: Install packages
run: sudo apt-get install -y nasm
run: |
sudo apt-get update
sudo apt-get install -y nasm

- name: Checkout repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
repository: intel/intel-ipsec-mb

- name: Build
run: make -j
Expand All @@ -39,12 +39,12 @@ jobs:

steps:
- name: Install packages
run: sudo apt-get install -y nasm
run: |
sudo apt-get update
sudo apt-get install -y nasm

- name: Checkout repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
repository: intel/intel-ipsec-mb

- name: Build
run: make SHARED=n -j
Expand All @@ -55,12 +55,12 @@ jobs:

steps:
- name: Install packages
run: sudo apt-get install -y nasm clang
run: |
sudo apt-get update
sudo apt-get install -y nasm clang

- name: Checkout repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
repository: intel/intel-ipsec-mb

- name: Build
run: make CC=clang -j
Expand All @@ -71,12 +71,12 @@ jobs:

steps:
- name: Install packages
run: sudo apt-get install -y nasm clang
run: |
sudo apt-get update
sudo apt-get install -y nasm clang

- name: Checkout repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
repository: intel/intel-ipsec-mb

- name: Build
run: make CC=clang SHARED=n -j
Expand All @@ -87,12 +87,12 @@ jobs:

steps:
- name: Install packages
run: sudo apt-get install -y nasm clang
run: |
sudo apt-get update
sudo apt-get install -y nasm clang

- name: Checkout repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
repository: intel/intel-ipsec-mb

- name: Build
run: make CC=clang AESNI_EMU=y -j
Expand All @@ -105,12 +105,12 @@ jobs:

steps:
- name: Install packages
run: sudo apt-get install -y nasm
run: |
sudo apt-get update
sudo apt-get install -y nasm cmake

- name: Checkout repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
repository: 'intel/intel-ipsec-mb'

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
Expand Down Expand Up @@ -138,12 +138,12 @@ jobs:

steps:
- name: Install packages
run: sudo apt-get install -y nasm
run: |
sudo apt-get update
sudo apt-get install -y nasm cmake

- name: Checkout repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
repository: 'intel/intel-ipsec-mb'

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,17 @@ jobs:
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 18
sudo apt install -y nasm clang-format-18
sudo -E ./llvm.sh 18
sudo -E apt-get install -y nasm cmake clang-format-18

- name: Checkout repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
repository: 'intel/intel-ipsec-mb'

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCLANG_FORMAT_BIN=clang-format-18

- name: Run style check
- name: Run C style check
run: cmake --build ${{github.workspace}}/build --target style

- name: Run ASM style check
run: cmake --build ${{github.workspace}}/build --target asm-style
4 changes: 0 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ jobs:

- name: Checkout repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
repository: 'intel/intel-ipsec-mb'

- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@c26a08ba26249b81327e26f6ef381897b6a8754d # v1.0.2
Expand Down Expand Up @@ -57,8 +55,6 @@ jobs:

- name: Checkout repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
repository: 'intel/intel-ipsec-mb'

- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@c26a08ba26249b81327e26f6ef381897b6a8754d # v1.0.2
Expand Down
Loading