Remount /dev when user namespace is used to allow accessing device nodes #59
Workflow file for this run
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
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install apt dependency | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libudev-dev | |
# Need to use nightly toolchain for eBPF | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rust-src | |
- name: Install bpf-linker | |
run: | | |
cargo install bpf-linker | |
- name: Build | |
run: cargo build --release | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: 'container-hotplug' | |
path: target/release/container-hotplug | |
- uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
prerelease: true | |
files: target/release/container-hotplug |