gitignore: ignore sniffle bin #121
This file contains hidden or 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
| name: Ubuntu Default Build Test | |
| on: [push, pull_request] | |
| jobs: | |
| ubuntu-default-build-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - | |
| name: List added files | |
| run: git --no-pager diff --name-only "$(git rev-parse --verify origin/master 2> /dev/null)" HEAD | |
| - | |
| name: Builder | |
| env: | |
| WORKSPACE: ${{ github.workspace }} | |
| run: | | |
| docker run -v "/var/run/docker.sock":"/var/run/docker.sock" \ | |
| --entrypoint /default-build.sh \ | |
| -v ${WORKSPACE}:/github/workspace \ | |
| ghcr.io/kismetwireless/kismet/build-ubuntu-noble-amd64:latest | |