Skip to content

Commit 86bf213

Browse files
committed
run cleanups
1 parent b75e844 commit 86bf213

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
2525
# Ubuntu 22.04 region AMI for ARM
2626
ec2-image-id: ami-062b37d89f25c958f
27-
ec2-instance-type: r6gd.medium
27+
ec2-instance-type: t4g.medium
2828
subnet-id: ${{ secrets.AWS_EC2_SUBNET_ID }}
2929
security-group-id: ${{ secrets.AWS_EC2_SG_ID }}
3030

.github/workflows/task-unit-test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@ jobs:
6565
NAME="$(echo $NAME | sed -e 's/[":\/\\<>\|*?]/_/g')" # Replace invalid characters with underscores
6666
echo "name=$NAME" >> $GITHUB_OUTPUT
6767
68+
- name: Clean up disk space
69+
run: |
70+
sudo apt-get clean
71+
docker system prune -af || true
72+
rm -rf $HOME/.cache || true
73+
df -h
6874
- name: unit tests
6975
run: make unit_test
7076
- name: valgrind

0 commit comments

Comments
 (0)