You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.
Is it a difficult system? m4 is needed for both docker swarm and Kubernetes build.
yes, m4 is needed. The minimum dependencies are: cmake, m4, awk, sed, grep, cut, and then a fully functional docker, and one of docker (swarm), kubectl, or helm.
BTW, the script install_dependency.sh actually installs too many non-essential dependencies. I would not recommend to run it as a build step. @TangZhiZhen, could you clean it up?
For example, docker-ce should not be installed in install_depedency.sh. The docker choice should be left to the user, which may prefer to use docker-ee instead.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Issue Description:
compile failure "make " on the pure machine of the latest version.
Error log:
Scanning dependencies of target build_docker_swarm
../../../deployment/docker-swarm/build.sh: line 10: m4: command not found
deployment/docker-swarm/CMakeFiles/build_docker_swarm.dir/build.make:57: recipe for target 'deployment/docker-swarm/CMakeFiles/build_docker_swarm' failed
make[2]: *** [deployment/docker-swarm/CMakeFiles/build_docker_swarm] Error 127
CMakeFiles/Makefile2:198: recipe for target 'deployment/docker-swarm/CMakeFiles/build_docker_swarm.dir/all' failed
make[1]: *** [deployment/docker-swarm/CMakeFiles/build_docker_swarm.dir/all] Error 2
Makefile:83: recipe for target 'all' failed
make: *** [all] Error 2
Reproduce Rate: 100%.
Command : make
The commit information: commit 2c591a8
Reproduce:
$ git clone https://github.com/OpenVisualCloud/CDN-Transcode-Sample.git
$ cd CDN-Transcode-Sample
$ sudo -E ./script/install_dependency.sh
$ sudo mkdir -p /etc/systemd/system/docker.service.d
$ printf "[Service]\nEnvironment="HTTPS_PROXY=$https_proxy" "NO_PROXY=$no_proxy"\n" | sudo tee /etc/systemd/system/docker.service.d/proxy.conf
$ sudo systemctl daemon-reload
$ sudo systemctl restart docker
$ mkdir build && cd build
$ cmake ../ -DNVODS=1 -DNLIVES=0
$ make
The text was updated successfully, but these errors were encountered: