We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27d8136 commit c861a50Copy full SHA for c861a50
1 file changed
.github/workflows/test-mac.yml
@@ -42,11 +42,36 @@ jobs:
42
stestr | "${{ runner.os }}"
43
stestr
44
path: .stestr
45
+ - name: Set up Rust (minimal, for building qiskit)
46
+ uses: dtolnay/rust-toolchain@stable
47
+ with:
48
+ toolchain: stable
49
+ profile: minimal
50
+ components: ""
51
+
52
+ - name: Verify Rust toolchain
53
+ shell: bash
54
+ run: |
55
+ set -e
56
+ echo "PATH=$PATH"
57
+ which rustc
58
+ which cargo
59
+ rustc -V
60
+ cargo -V
61
- name: "Install dependencies"
62
63
+ env:
64
+ RUSTUP_TOOLCHAIN: stable
65
run: |
66
set -e
67
python -m venv test-job
68
source test-job/bin/activate
69
70
71
72
73
74
75
python -m pip install -U pip
76
python -m pip install -U \
77
-c constraints.txt \
0 commit comments