blob: 151eb661bcaa6437959a12a071e6618c75083381 (
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: CC0-1.0
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
|