Skip to content

Acelera las ejecuciones en CI #2702

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Nov 6, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Configura apt/dpkg para minimizar tiempos de instalación
Esto se logra deshabilitando algunos triggers (nostros nos encargamos de
postgresql-common) y corriendo con ciertas opciones, como deshabilitando
fsyncs
  • Loading branch information
rtobar committed Nov 1, 2023
commit 9bc18db74a8e41cb4bbb75febbf6447f9dc925e4
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
with:
python-version: "3.11"
cache: "pip"
- name: Configura dpkg/apt para correr de manera eficiente
uses: abbbi/github-actions-tune@v1
- name: Deshabilita triggers de postgresql-common
run: sudo sed -i '/postgresql-common/d' /var/lib/dpkg/triggers/File
- name: Instalar dependencias de sistema
run: |
sudo apt-get update
Expand Down