File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change 15
15
name : Set up ssh & known_hosts
16
16
command : sudo sed -i -e 's/#ListenAddress/ListenAddress/' /etc/ssh/sshd_config; sudo sed -i -e 's/AddressFamily inet/AddressFamily any/' /etc/ssh/sshd_config; sudo /etc/init.d/ssh restart; rm -f ~/.ssh/id_rsa*; ssh-keygen -q -N "" -f ~/.ssh/id_rsa; sudo rm -f ~/.ssh/authorized_keys; cp ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys; rm -f ~/.ssh/known_hosts; ssh -o "StrictHostKeyChecking no" localhost ls; ssh -o "StrictHostKeyChecking no" 0:0:0:0:0:0:0:1 ls
17
17
18
- - run :
19
- name : Init submodules
20
- command : if [ $CIRCLE_BRANCH != "release" ]; then git submodule update --init --recursive; fi
21
18
- run :
22
19
name : vcpkg
23
- command : if [ $CIRCLE_BRANCH != "release" ]; then external /vcpkg/bootstrap-vcpkg.sh; mkdir build; ./external /vcpkg/vcpkg --x-install-root=$PWD/build/vcpkg_installed --triplet=x64-linux --feature-flags="manifests" install; fi
20
+ command : external_imported /vcpkg/bootstrap-vcpkg.sh; mkdir build; ./external_imported /vcpkg/vcpkg --x-install-root=$PWD/build/vcpkg_installed --triplet=x64-linux --feature-flags="manifests" install
24
21
- run :
25
22
name : Build the root version of the project
26
23
command : mkdir ../root_version; cp -Rf .git * ../root_version/; cd ../root_version; git checkout v6; git submodule update --init --recursive; cd build; cmake ../; make -j4
72
69
- run :
73
70
name : Set up ssh & known_hosts
74
71
command : sudo /etc/init.d/ssh start; rm -f ~/.ssh/id_rsa*; ssh-keygen -q -N "" -f ~/.ssh/id_rsa; sudo rm -f ~/.ssh/authorized_keys; cp ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys; rm -f ~/.ssh/known_hosts; ssh -o "StrictHostKeyChecking no" localhost ls
75
- - run :
76
- name : Init submodules
77
- command : if [ $CIRCLE_BRANCH != "release" ]; then git submodule update --init --recursive; fi
78
72
- run :
79
73
name : vcpkg
80
- command : if [ $CIRCLE_BRANCH != "release" ]; then external /vcpkg/bootstrap-vcpkg.sh; mkdir build; ./external /vcpkg/vcpkg --x-install-root=$PWD/build/vcpkg_installed --triplet=x64-linux --feature-flags="manifests" install; fi
74
+ command : external_imported /vcpkg/bootstrap-vcpkg.sh; mkdir build; ./external_imported /vcpkg/vcpkg --x-install-root=$PWD/build/vcpkg_installed --triplet=x64-linux --feature-flags="manifests" install
81
75
- run :
82
76
name : Build the project
83
77
command : cd build; cmake -DCMAKE_INSTALL_PREFIX=/usr ../; make -j4; sudo make install
You can’t perform that action at this time.
0 commit comments