gha: try loading a module (which will probably fail) #9
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
on: | |
- push | |
- pull_request | |
- workflow_dispatch | |
name: C/C++ CI prototype | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: build the NAT46 module | |
run: | | |
cd nat46/modules | |
KCPPFLAGS='-DNAT46_VERSION=\"test\" -Werror' make | |
# I will be extremely surprised if this works :) | |
insmod ./nat46.ko |