File: appveyor.yml

package info (click to toggle)
rust-fst 0.3.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 6,852 kB
  • sloc: python: 30; makefile: 13; sh: 12
file content (22 lines) | stat: -rw-r--r-- 511 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
environment:
  matrix:
  - TARGET: x86_64-pc-windows-gnu
    BITS: 64
    MSYS2: 1
  - TARGET: i686-pc-windows-gnu
    BITS: 32
    MSYS2: 1
install:
  - curl -sSf -o rustup-init.exe https://win.rustup.rs/
  - rustup-init.exe -y --default-host %TARGET%
  - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
  - if defined MSYS2 set PATH=C:\msys64\mingw%BITS%\bin;%PATH%
  - rustc -V
  - cargo -V
build: false
test_script:
  - cargo build --verbose --all
  - cargo test --verbose --all
branches:
  only:
    - master