We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 285fa7e commit 47ebd65Copy full SHA for 47ebd65
.github/workflows/publish.yml
@@ -36,10 +36,11 @@ jobs:
36
key: opencv-static-4.12.0-no-itt-linux-${{ matrix.os }}-${{ runner.arch }}-${{ matrix.manylinux }}
37
38
- name: Install build dependencies
39
- env:
40
- DEBIAN_FRONTEND: noninteractive
41
- NEEDRESTART_MODE: a
42
run: |
+ # Set environment variables for all commands including sudo
+ echo "DEBIAN_FRONTEND=noninteractive" | sudo tee -a /etc/environment
+ echo "NEEDRESTART_MODE=a" | sudo tee -a /etc/environment
43
+
44
sudo apt-get update
45
# Install LLVM for opencv-rust bindings codegen (no need for system OpenCV anymore)
46
sudo apt-get install -y clang libclang-dev llvm-dev cmake curl wget software-properties-common
0 commit comments