Skip to content

Commit

Permalink
Tc arm64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
msune committed Feb 15, 2025
1 parent af87ed4 commit e5afa73
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
PLATFORMS: linux/amd64
PLATFORMS: linux/amd64,linux/arm64

permissions:
packages: write
Expand All @@ -17,11 +17,13 @@ jobs:
fail-fast: false
matrix:
combination:
#Debug
#amd64
- { kernel: 'Linux 6.8', runner: 'ubuntu-24.04', clangs: 'clang-14 clang-15 clang-16 clang-17 clang-18', debug: '1' }

#NDEBUG
- { kernel: 'Linux 6.8', runner: 'ubuntu-24.04', clangs: 'clang-14 clang-15 clang-16 clang-17 clang-18', debug: '0' }

#arm64
- { kernel: 'Linux 6.8', runner: 'ubuntu-24.04-arm', clangs: 'clang-14 clang-15 clang-16 clang-17 clang-18', debug: '1' }
- { kernel: 'Linux 6.8', runner: 'ubuntu-24.04-arm', clangs: 'clang-14 clang-15 clang-16 clang-17 clang-18', debug: '0' }
runs-on: ${{ matrix.combination.runner }}
steps:
- name: "Checkout sfunnel"
Expand Down Expand Up @@ -66,12 +68,21 @@ jobs:
fail-fast: false
matrix:
combination:
# amd64
- { runner: 'ubuntu-24.04', cni: 'cilium', nodes: '1' }
- { runner: 'ubuntu-24.04', cni: 'cilium', nodes: '2' }

- { runner: 'ubuntu-24.04', cni: 'calico', nodes: '2' }
- { runner: 'ubuntu-24.04', cni: 'flannel', nodes: '2' }
- { runner: 'ubuntu-24.04', cni: 'kindnet', nodes: '2' }

# arm64
- { runner: 'ubuntu-24.04-arm', cni: 'cilium', nodes: '1' }
- { runner: 'ubuntu-24.04-arm', cni: 'cilium', nodes: '2' }

- { runner: 'ubuntu-24.04-arm', cni: 'calico', nodes: '2' }
- { runner: 'ubuntu-24.04-arm', cni: 'flannel', nodes: '2' }
- { runner: 'ubuntu-24.04-arm', cni: 'kindnet', nodes: '2' }
runs-on: ${{ matrix.combination.runner }}
steps:
- name: "Checkout sfunnel"
Expand Down

0 comments on commit e5afa73

Please sign in to comment.