Skip to content

Commit 988da9c

Browse files
committed
Try a different way of connecting to CI VM
1 parent 21374af commit 988da9c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,18 @@ jobs:
3838
steps:
3939
- uses: actions/checkout@v2
4040
- name: Test with pytest
41-
uses: addnab/docker-run-action@v3
41+
uses: |
42+
addnab/docker-run-action@v3
43+
lhotari/action-upterm@v1
4244
with:
4345
image: fluxrm/flux-core:focal
4446
options: -v ${{ github.workspace }}:/workspace -u root
47+
limit-access-to-actor: true
4548
run: |
4649
cd /workspace
4750
echo "Running in ${PWD}"
4851
sudo apt update
49-
sudo apt install -y openssh-server openssh-client curl
52+
sudo apt install -y openssh-server openssh-client
5053
mkdir -p "$HOME/.ssh"
5154
chmod 0755 "$HOME"
5255
chmod 0700 "$HOME/.ssh"
@@ -55,7 +58,6 @@ jobs:
5558
chmod 600 "$HOME/.ssh/authorized_keys"
5659
ls -la /etc/init.d/
5760
sudo /etc/init.d/ssh start
58-
curl https://api.ipify.org
5961
pip install -r requirements.txt
6062
pip install -r requirements-dev.txt
6163
pip install -r requirements-connector-radical.txt

0 commit comments

Comments
 (0)