Skip to content

Remove unneeded GitLab jobs #4

Remove unneeded GitLab jobs

Remove unneeded GitLab jobs #4

Workflow file for this run

name: Generate static-analysis-kernel test bins
on:
push:
workflow_dispatch:
jobs:
test-bin-build:
strategy:
matrix:
include:
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Build
shell: bash
run: |
mkdir -p artifacts
cargo test --no-run
mv target/debug/deps/static_analysis_kernel-???????????????? artifacts/
- name: Archive
shell: bash
run: |
name="bin-${{ matrix.target }}.zip"
zip -r $name artifacts
- name: Upload
uses: actions/upload-artifact@v4
with:
name: bin-${{ matrix.target }}
path: bin-${{ matrix.target }}.zip