Skip to content
Merged
Show file tree
Hide file tree
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
23 changes: 13 additions & 10 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,17 @@ jobs:
steps:
- name: Освобождение места
if: startsWith(matrix.os, 'ubuntu')
uses: easimon/maximize-build-space@master
with:
root-reserve-mb: 20480
swap-size-mb: 1024
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'
run: |
df -h
echo "-- Android"
sudo rm -rf /usr/local/lib/android
echo "-- Haskell"
sudo rm -rf /opt/ghc
echo "-- CodeQL"
sudo rm -rf /opt/hostedtoolcache/CodeQL
echo "-- docker images"
sudo docker image prune --all --force
df -h

- name: Актуализация
uses: actions/checkout@v4.2.2
Expand Down Expand Up @@ -69,8 +72,8 @@ jobs:
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo dpkg --add-architecture i386
sudo apt update
sudo apt install wine -y
sudo apt-get update
sudo apt-get install wine -y

- name: Установка платформы 1С
uses: 1CDevFlow/onec-setup-action@main
Expand Down
24 changes: 13 additions & 11 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,17 @@ jobs:
steps:
- name: Освобождение места
if: startsWith(matrix.os, 'ubuntu')
uses: easimon/maximize-build-space@master
with:
root-reserve-mb: 19000
swap-size-mb: 1024
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'

run: |
df -h
echo "-- Android"
sudo rm -rf /usr/local/lib/android
echo "-- Haskell"
sudo rm -rf /opt/ghc
echo "-- CodeQL"
sudo rm -rf /opt/hostedtoolcache/CodeQL
echo "-- docker images"
sudo docker image prune --all --force
df -h
- name: Установка локали
if: matrix.os == startsWith(matrix.os, 'windows')
run: |
Expand Down Expand Up @@ -79,8 +81,8 @@ jobs:
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo dpkg --add-architecture i386
sudo apt update
sudo apt install wine -y
sudo apt-get update
sudo apt-get install wine -y

- name: Установка платформы 1С
uses: 1CDevFlow/onec-setup-action@main
Expand Down
Loading