Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterTea committed Apr 30, 2024
1 parent 9eef7f3 commit 76ed91c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/linux_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,14 @@ jobs:
shell: bash
run: |
mkdir -p ~/.ssh/
echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
echo -e "Host github.com\n\tStrictHostKeyChecking no\n\n" >> ~/.ssh/config
sudo apt-get update
DEBIAN_FRONTEND=noninteractive ACCEPT_EULA=Y sudo apt-get install -y rsyslog curl zip unzip tar libssl-dev libcurl4-openssl-dev libunwind-dev git cmake ninja-build gdb protobuf-compiler libsodium-dev libgflags-dev libprotobuf-dev libutempter-dev g++ net-tools lsof
echo "KEYGEN"
sudo netstat -nlp | grep :22
sudo sed -i '/imklog/s/^/#/' /etc/rsyslog.conf
echo "Host localhost\n Port 2222\n\n" >> ~/.ssh/config
#sudo echo "LogLevel DEBUG3" >> /etc/ssh/sshd_config
#echo "Port 2222" >> /etc/ssh/sshd_config
#sudo service rsyslog restart
Expand All @@ -86,7 +88,7 @@ jobs:
#chmod 600 ~/.ssh/authorized_keys
#chmod go-w ~/
echo "KEYGEN"
ssh -vvvvvvv -o "StrictHostKeyChecking no" -o 'PreferredAuthentications=publickey' -p 2222 localhost "echo foobar" # Fails if we can't ssh into localhost without a password
ssh -vvvvvvv -o "StrictHostKeyChecking no" -o 'PreferredAuthentications=publickey' localhost "echo foobar" # Fails if we can't ssh into localhost without a password
if [[ -z "${ACT}" ]]; then auth_header="$(git config --local --get http.https://github.com/.extraheader)"; fi
git submodule sync --recursive
git submodule update --init --force --recursive
Expand Down Expand Up @@ -116,7 +118,6 @@ jobs:
pushd build
cmake -DSANITIZE_ADDRESS=ON ../
make -j`nproc`
TSAN_OPTIONS="suppressions=../test/test_tsan.suppression" ./et-test
popd
./test/system_tests/connect_with_jumphost.sh
Expand Down

0 comments on commit 76ed91c

Please sign in to comment.