1 files changed, 6 insertions(+), 3 deletions(-)
M .build.yml
M .build.yml => .build.yml +6 -3
@@ 1,11 1,14 @@
-image: alpine/latest
+image: ubuntu/lts
packages:
- - rust
- - cargo
+ - curl
+ - libssl-dev
+ - pkg-config
sources:
- https://git.sr.ht/~boringcactus/gemifedi
tasks:
- build: |
+ curl https://sh.rustup.rs -sSf | sh -s -- --quiet -y
+ source $HOME/.cargo/env
cd gemifedi
cargo test
cargo build