blob: dfe263919f29e4f44ccfcaa4dc3e1a28a6dd7188 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Copyright (C) 2019 Robin Krahl <robin.krahl@ireas.org>
# SPDX-License-Identifier: MIT
image: archlinux
packages:
- rust
- hidapi
- gcc
sources:
- https://git.ireas.org/nitrokey-rs
tasks:
- build: |
cd nitrokey-rs
cargo build --release
- test: |
cd nitrokey-rs
cargo test
|