Skip to content
Open

AA #74

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -945,7 +945,13 @@ jobs:
cat /home/runner/.ssh/id_rsa.pub >> /home/runner/.ssh/authorized_keys
ssh -T localhost
sudo systemctl start postgresql

- name: Try deleting unused folders
run: |
rm -rf /opt/hostedtoolcache
rm -rf /usr/share/dotnet
rm -rf /opt/ghc
rm -rf "$AGENT_TOOLSDIRECTORY"
sudo apt-get clean
- name: Run ansible script
shell: bash
run: |
Expand Down Expand Up @@ -992,6 +998,13 @@ jobs:
with:
name: install-log
path: /usr/local/submitty/install.log

- name: Run systemctl status and journal
if: failure()
shell: bash
run: |
journalctl -xeu submitty_autograding_worker.service;
df -h

- uses: actions/upload-artifact@v4
if: failure()
Expand Down
Loading