File: .appveyor.yml

package info (click to toggle)
rust-packed-simd 0.3.3-7
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,196 kB
  • sloc: makefile: 8
file content (59 lines) | stat: -rw-r--r-- 1,778 bytes parent folder | download | duplicates (33)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
matrix:
  allow_failures:
    # FIXME: https://github.com/rust-lang-nursery/packed_simd/issues/72
    - TARGET: i686-pc-windows-msvc
    - TARGET: i686-pc-windows-gnu
    - TARGET: x86_64-pc-windows-gnu
  fast_finish: true

environment:
  matrix:
    - TARGET: x86_64-pc-windows-msvc
      MSYSTEM: MINGW64
      NOVERIFY: "1"
    - TARGET: x86_64-pc-windows-msvc
      MSYSTEM: MINGW64
      RUSTFLAGS: "-C target-feature=+sse4.2"
      NOVERIFY: "1"
    - TARGET: x86_64-pc-windows-msvc
      MSYSTEM: MINGW64
      RUSTFLAGS: "-C target-feature=+avx"
      NOVERIFY: "1"
    - TARGET: x86_64-pc-windows-msvc
      MSYSTEM: MINGW64
      RUSTFLAGS: "-C target-feature=+avx2"
      NOVERIFY: "1"

    - TARGET: i686-pc-windows-msvc
      MSYSTEM: MINGW32
      NOVERIFY: "1"
    - TARGET: i686-pc-windows-msvc
      MSYSTEM: MINGW32
      RUSTFLAGS: "-C target-feature=+sse4.2"
      NOVERIFY: "1"
    - TARGET: i686-pc-windows-msvc
      MSYSTEM: MINGW32
      RUSTFLAGS: "-C target-feature=+avx"
      NOVERIFY: "1"
    - TARGET: i686-pc-windows-msvc
      MSYSTEM: MINGW32
      RUSTFLAGS: "-C target-feature=+avx2"
      NOVERIFY: "1"

    - TARGET: x86_64-pc-windows-gnu
      MSYSTEM: MINGW64

    - TARGET: i686-pc-windows-gnu
      MSYSTEM: MINGW32
    - TARGET: x86_64-pc-windows-gnu
      MSYSTEM: MINGW64
install:
  - ps: if (ls -r . -fi "*.rs" | sls "`t") { throw "Found tab character" }
  - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe" -FileName "rust-install.exe"
  - ps: .\rust-install.exe /VERYSILENT /NORESTART /DIR="C:\rust" | Out-Null
  - ps: $env:PATH="$env:PATH;C:\rust\bin"
  - set PATH=c:\msys64\%MSYSTEM%\bin;c:\msys64\usr\bin;%PATH%
  - rustc -vV
  - cargo -vV
build: false
test_script: bash -c "ci/run.sh"