Browse Source

Use apt-eatmydata to speedup dependency installation (#2147)

master
Samuel Thibault 3 months ago
parent
commit
2ea4121054
No account linked to committer's email address
2 changed files with 3 additions and 0 deletions
  1. 2
    0
      .github/workflows/dist.yml
  2. 1
    0
      .github/workflows/workflow-for-fuzzing-build.yml

+ 2
- 0
.github/workflows/dist.yml View File



steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: firebuild/apt-eatmydata-action@v1
- name: enable 32bit architecture - name: enable 32bit architecture
run: sudo dpkg --add-architecture i386 run: sudo dpkg --add-architecture i386
if: matrix.arch == 'x86-32' if: matrix.arch == 'x86-32'
name: Run distcheck name: Run distcheck
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: firebuild/apt-eatmydata-action@v1
- name: dependencies - name: dependencies
run: sudo apt-get update && sudo apt-get install ${{ env.deps }} run: sudo apt-get update && sudo apt-get install ${{ env.deps }}
- name: configure - name: configure

+ 1
- 0
.github/workflows/workflow-for-fuzzing-build.yml View File

archconfigflags: '' archconfigflags: ''
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: firebuild/apt-eatmydata-action@v1
- name: enable 32bit architecture - name: enable 32bit architecture
run: sudo dpkg --add-architecture i386 run: sudo dpkg --add-architecture i386
if: matrix.arch == 'x86-32' if: matrix.arch == 'x86-32'

Loading…
Cancel
Save