mirror of
https://github.com/Syfaro/fuzzysearch.git
synced 2024-11-05 14:32:56 +00:00
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: test
|
|
image: rust:1-slim-buster
|
|
commands:
|
|
- apt-get update -y
|
|
- apt-get install -y wget libssl-dev pkg-config
|
|
- apt-get install -y libavcodec-dev libavformat-dev libavutil-dev libavdevice-dev clang llvm
|
|
- apt-get install -y python3 python3-pip
|
|
- pip3 install cfscrape
|
|
- wget -O sccache.tar.gz https://github.com/mozilla/sccache/releases/download/0.2.13/sccache-0.2.13-x86_64-unknown-linux-musl.tar.gz
|
|
- tar zxvf sccache.tar.gz
|
|
- export RUSTC_WRAPPER=$(pwd)/sccache-0.2.13-x86_64-unknown-linux-musl/sccache
|
|
- export SQLX_OFFLINE=true
|
|
- cargo build
|
|
- cargo test
|
|
- $(pwd)/sccache-0.2.13-x86_64-unknown-linux-musl/sccache --show-stats
|
|
environment:
|
|
AWS_ACCESS_KEY_ID:
|
|
from_secret: sccache_s3_access_key
|
|
AWS_SECRET_ACCESS_KEY:
|
|
from_secret: sccache_s3_secret_key
|
|
SCCACHE_BUCKET: cache
|
|
SCCACHE_ENDPOINT:
|
|
from_secret: sccache_s3_endpoint
|
|
SCCACHE_S3_USE_SSL: true
|
|
|
|
---
|
|
kind: signature
|
|
hmac: 665dab5e07086669c4b215ed86faa0e1e63c495b0bf020099fb1edd33757618b
|
|
|
|
...
|