Skip to content

Commit 05ca722

Browse files
committed
skip host key checking
1 parent 2f4aafe commit 05ca722

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.github/workflows/build-release.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -71,23 +71,23 @@ jobs:
7171
cd base
7272
composer update --no-dev
7373
74-
- name: Create Database
75-
run: |
76-
sudo systemctl start mysql.service
77-
sudo mysql -proot -e 'drop database if exists phplistdb'
78-
sudo mysqladmin -proot create phplistdb
79-
sudo mysql -proot -e 'grant all on phplistdb.* to phplist@localhost identified by "phplist"'
74+
# - name: Create Database
75+
# run: |
76+
# sudo systemctl start mysql.service
77+
# sudo mysql -proot -e 'drop database if exists phplistdb'
78+
# sudo mysqladmin -proot create phplistdb
79+
# sudo mysql -proot -e 'grant all on phplistdb.* to phplist@localhost identified by "phplist"'
8080

81-
- name: Start Test Server
82-
run: |
83-
cd $GITHUB_WORKSPACE
84-
cp -fv tests/ci/behat.yml tests/behat.yml
85-
cp -fv tests/ci/config.php public_html/lists/config/config.php
86-
mkdir -p output/screenshots
87-
mkdir -p build/mails
88-
./bin/start-selenium > output/selenium.log 2>&1 &
89-
sleep 5
90-
sudo php -S 0.0.0.0:80 -t public_html > /dev/null 2>&1 &
81+
# - name: Start Test Server
82+
# run: |
83+
# cd $GITHUB_WORKSPACE
84+
# cp -fv tests/ci/behat.yml tests/behat.yml
85+
# cp -fv tests/ci/config.php public_html/lists/config/config.php
86+
# mkdir -p output/screenshots
87+
# mkdir -p build/mails
88+
# ./bin/start-selenium > output/selenium.log 2>&1 &
89+
# sleep 5
90+
# sudo php -S 0.0.0.0:80 -t public_html > /dev/null 2>&1 &
9191

9292
# - name: Check PHP syntax errors
9393
# uses: overtrue/[email protected]
@@ -216,7 +216,7 @@ jobs:
216216
RELEASE_FOLDER=phplist
217217
fi
218218
219-
sshpass -e sftp -oBatchMode=no -b - ${{ secrets.SF_USERNAME }}@${{ secrets.SF_HOST }} << EOF
219+
sshpass -e sftp -o 'StrictHostKeyChecking no' -oBatchMode=no -b - ${{ secrets.SF_USERNAME }}@${{ secrets.SF_HOST }} << EOF
220220
cd /home/frs/project/phplist/
221221
ls -l
222222
pwd

0 commit comments

Comments
 (0)