Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
pubalokta committed Nov 13, 2024
1 parent 0ba8a91 commit 4cf1621
Showing 1 changed file with 38 additions and 33 deletions.
71 changes: 38 additions & 33 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,36 +37,41 @@ jobs:
yes "" | make -C linux-${{ matrix.kernel }} oldconfig
make -C linux-${{ matrix.kernel }} modules_prepare
make KSRC=linux-${{ matrix.kernel }}
- name: Install node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: install redis-cli
run: sudo apt-get install redis-tools


- name: Install dependencies
run: npm install

- name: Setup Standalone Tests
run: make test-standalone-setup

- name: Run Standalone tests
run: make test-standalone

- name: Teardown Standalone Tests
run: make test-standalone-teardown

- name: Setup Clustered Tests
run: make test-cluster-setup

- name: Check Redis Cluster
run: timeout 60 bash <<< "until redis-cli -c -p 16371 cluster info | grep 'cluster_state:ok'; do sleep 1; done"

- name: Run Clustered tests
run: make test-cluster

- name: Teardown Clustered Tests
run: make test-cluster-teardown
insmod knetstat.ko
lsmod | grep knetstat
- name: run knetstat
run: cat /proc/net/tcpstat

# - name: Install node
# uses: actions/setup-node@v4
# with:
# node-version: ${{ matrix.node-version }}
#
# - name: install redis-cli
# run: sudo apt-get install redis-tools
#
#
# - name: Install dependencies
# run: npm install
#
# - name: Setup Standalone Tests
# run: make test-standalone-setup
#
# - name: Run Standalone tests
# run: make test-standalone
#
# - name: Teardown Standalone Tests
# run: make test-standalone-teardown
#
# - name: Setup Clustered Tests
# run: make test-cluster-setup
#
# - name: Check Redis Cluster
# run: timeout 60 bash <<< "until redis-cli -c -p 16371 cluster info | grep 'cluster_state:ok'; do sleep 1; done"
#
# - name: Run Clustered tests
# run: make test-cluster
#
# - name: Teardown Clustered Tests
# run: make test-cluster-teardown

0 comments on commit 4cf1621

Please sign in to comment.