mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-21 07:49:34 +01:00
c42c083b37
Use aliases for copy statement (compat change) Install missing dependencies to runner Fixed typo
15 lines
341 B
Bash
Executable File
15 lines
341 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "--> Turn off StrictKeyChecking"
|
|
cat > /etc/ssh/ssh_config <<EOF
|
|
Host *
|
|
StrictHostKeyChecking no
|
|
UserKnownHostsFile=/dev/null
|
|
EOF
|
|
|
|
echo "--> Install Semaphore entrypoint wrapper script"
|
|
cp ./deployment/docker/common/semaphore-wrapper /usr/local/bin/semaphore-wrapper
|
|
task deps
|
|
task compile
|
|
task build:local
|