-
Notifications
You must be signed in to change notification settings - Fork 83
/
ci_local.sh
executable file
·41 lines (30 loc) · 1.14 KB
/
ci_local.sh
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
#!/bin/bash
set -e
cd "$(dirname "$0")"
# This script needs cargo-binstall installed
# Please check: https://github.com/cargo-bins/cargo-binstall
cargo binstall cargo-nextest@0.9.52 --secure
./ci_tools.sh
# Array containing the configurations (rust and target)
# Please comment out other options if you do not want to test them
configs=(
"stable|x86_64-unknown-linux-gnu"
"stable|x86_64-fortanix-unknown-sgx"
"stable|aarch64-unknown-linux-musl"
"nightly|x86_64-unknown-linux-gnu"
"beta|x86_64-unknown-linux-gnu"
)
# Path to the script to run
given_script="./ci.sh"
# Iterate over each configuration
for config in "${configs[@]}"; do
# Split the configuration into rust and target using IFS (Internal Field Separator)
IFS='|' read -r rust target <<< "$config"
echo "Running $given_script with RUST_VERSION=$rust and TARGET=$target"
# Export the variables to be used in the given script
export RUST_VERSION=$rust
export TARGET=$target
# Run the given script with the set environment variables
$given_script
echo "Finished running $given_script with RUST_VERSION=$rust and TARGET=$target"
done