summaryrefslogtreecommitdiffstats
path: root/vendor/libm/azure-pipelines.yml
blob: d8068e023b4ca4277540aef9b42e0a4ec3c5f9e0 (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
trigger:
  - master

jobs:
  - job: Docker
    pool:
      vmImage: ubuntu-16.04
    steps:
      - template: ci/azure-install-rust.yml
      - bash: rustup target add $TARGET
        displayName: "add cross target"
      - bash: rustup target add x86_64-unknown-linux-musl
        displayName: "add musl target"
      - bash: cargo generate-lockfile && ./ci/run-docker.sh $TARGET
        displayName: "run tests"
    strategy:
      matrix:
        aarch64:
          TARGET: aarch64-unknown-linux-gnu
        arm:
          TARGET: arm-unknown-linux-gnueabi
        armhf:
          TARGET: arm-unknown-linux-gnueabihf
        armv7:
          TARGET: armv7-unknown-linux-gnueabihf
        i686:
          TARGET: i686-unknown-linux-gnu
        mips:
          TARGET: mips-unknown-linux-gnu
        mips64:
          TARGET: mips64-unknown-linux-gnuabi64
        mips64el:
          TARGET: mips64el-unknown-linux-gnuabi64
        powerpc:
          TARGET: powerpc-unknown-linux-gnu
        powerpc64:
          TARGET: powerpc64-unknown-linux-gnu
        powerpc64le:
          TARGET: powerpc64le-unknown-linux-gnu
        x86_64:
          TARGET: x86_64-unknown-linux-gnu

  - job: wasm
    pool:
      vmImage: ubuntu-16.04
    steps:
      - template: ci/azure-install-rust.yml
      - script: rustup target add wasm32-unknown-unknown
        displayName: "Install rust wasm target"
      - script: cargo build --target wasm32-unknown-unknown
        displayName: "Build for wasm"
      - script: cargo build --target wasm32-unknown-unknown --no-default-features
        displayName: "Build for wasm (no default features)"
    variables:
      TOOLCHAIN: nightly

  - job: rustfmt
    pool:
      vmImage: ubuntu-16.04
    steps:
      - template: ci/azure-install-rust.yml
      - bash: rustup component add rustfmt
        displayName: "install rustfmt"
      - bash: cargo fmt --all -- --check
        displayName: "check formatting"

  - job: compiler_builtins_works
    pool:
      vmImage: ubuntu-16.04
    steps:
      - template: ci/azure-install-rust.yml
      - bash: cargo build -p cb
        displayName: "Check compiler-builtins still probably builds"