Autoformat build.rcl #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is generated from build.rcl. | |
{ | |
"env": {"CARGO_TERM_COLOR": "always"}, | |
"jobs": { | |
"native-1-60-0": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{"uses": "actions/[email protected]"}, | |
{ | |
"name": "Install toolchain", | |
"run": "rustup toolchain install 1.60.0\nrustup target add x86_64-unknown-linux-gnu --toolchain 1.60.0\n" | |
}, | |
{ | |
"name": "Build", | |
"run": "cargo +1.60.0 build --target x86_64-unknown-linux-gnu --verbose" | |
}, | |
{ | |
"name": "Run tests", | |
"run": "cargo +1.60.0 test --target x86_64-unknown-linux-gnu --verbose" | |
} | |
] | |
}, | |
"native-1-70-0": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{"uses": "actions/[email protected]"}, | |
{ | |
"name": "Install toolchain", | |
"run": "rustup toolchain install 1.70.0\nrustup target add x86_64-unknown-linux-gnu --toolchain 1.70.0\n" | |
}, | |
{ | |
"name": "Build", | |
"run": "cargo +1.70.0 build --target x86_64-unknown-linux-gnu --verbose" | |
}, | |
{ | |
"name": "Run tests", | |
"run": "cargo +1.70.0 test --target x86_64-unknown-linux-gnu --verbose" | |
} | |
] | |
}, | |
"native-beta": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{"uses": "actions/[email protected]"}, | |
{ | |
"name": "Install toolchain", | |
"run": "rustup toolchain install beta\nrustup target add x86_64-unknown-linux-gnu --toolchain beta\n" | |
}, | |
{ | |
"name": "Build", | |
"run": "cargo +beta build --target x86_64-unknown-linux-gnu --verbose" | |
}, | |
{ | |
"name": "Run tests", | |
"run": "cargo +beta test --target x86_64-unknown-linux-gnu --verbose" | |
} | |
] | |
}, | |
"native-nightly": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{"uses": "actions/[email protected]"}, | |
{ | |
"name": "Install toolchain", | |
"run": "rustup toolchain install nightly\nrustup target add x86_64-unknown-linux-gnu --toolchain nightly\n" | |
}, | |
{ | |
"name": "Build", | |
"run": "cargo +nightly build --target x86_64-unknown-linux-gnu --verbose" | |
}, | |
{ | |
"name": "Run tests", | |
"run": "cargo +nightly test --target x86_64-unknown-linux-gnu --verbose" | |
} | |
] | |
}, | |
"sgx-msrv": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{"uses": "actions/[email protected]"}, | |
{ | |
"name": "Install toolchain", | |
"run": "rustup toolchain install 1.60.0\nrustup target add x86_64-fortanix-unknown-sgx --toolchain 1.60.0\n" | |
}, | |
{ | |
"name": "Build", | |
"run": "cargo +1.60.0 build --target x86_64-fortanix-unknown-sgx --verbose" | |
} | |
] | |
}, | |
"wasm-msrv": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{"uses": "actions/[email protected]"}, | |
{ | |
"name": "Install toolchain", | |
"run": "rustup toolchain install 1.60.0\nrustup target add wasm32-unknown-unknown --toolchain 1.60.0\n" | |
}, | |
{ | |
"name": "Build", | |
"run": "cargo +1.60.0 build --target wasm32-unknown-unknown --verbose" | |
} | |
] | |
} | |
}, | |
"name": "Build", | |
"on": {"pull_request": {"branches": ["master"]}, "push": {"branches": ["*"]}} | |
} |