Skip to content
Snippets Groups Projects

Adapt linux build now depending on libssl-dev. Introduce tests job (#45, #46)

Merged Moul requested to merge 45_fix_linux_build into master
All threads resolved!
Files
2
+ 8
1
@@ -2,12 +2,19 @@
@@ -2,12 +2,19 @@
# https://hub.docker.com/r/library/rust/tags/
# https://hub.docker.com/r/library/rust/tags/
stages:
stages:
 
- tests
- build
- build
- release
- release
 
tests_linux:
 
stage: tests
 
image: rust:buster
 
script:
 
- cargo test
 
build_linux:
build_linux:
stage: build
stage: build
image: rust:slim-buster
image: rust:buster
script:
script:
# Build the project for Linux
# Build the project for Linux
- cargo build --release
- cargo build --release
Loading