-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
44 lines (40 loc) · 987 Bytes
/
.travis.yml
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
branches:
only:
# This is where pull requests from "bors r+" are built.
- staging
# This is where pull requests from "bors try" are built.
- trying
# Not really necessary, just to get a green badge on “master”
- master
language: rust
os: linux
dist: focal
jobs:
include:
# amd64 linux
- rust: stable
arch: amd64
before_install:
- sudo apt update
- sudo apt install -y gcc-multilib # Allow compilation for 32-bit target
- rust: beta
arch: amd64
before_install:
- sudo apt update
- sudo apt install -y gcc-multilib
- rust: nightly
env: FEATURES=--features=nightly
arch: amd64
before_install:
- sudo apt update
- sudo apt install -y gcc-multilib
# arm64 linux
- rust: stable
arch: arm64
- rust: beta
arch: arm64
- rust: nightly
env: FEATURES=--features=nightly
arch: arm64
install: ci/install.sh
script: ci/script.sh