Skip to content

Commit e9f49ab

Browse files
Fei Chenmeta-codesync[bot]
authored andcommitted
Regen github actions
Summary: as per title ran opensource/fbcode_builder/getdeps/facebook/update-all-github-actions.sh without any change Reviewed By: bigfootjon Differential Revision: D90409978 fbshipit-source-id: 866cac33b978ab82847a3a36bfa74afabea28881
1 parent d015db8 commit e9f49ab

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/getdeps_linux.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ jobs:
5454
- name: Fetch googletest
5555
if: ${{ steps.paths.outputs.googletest_SOURCE }}
5656
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests googletest
57+
- name: Fetch libaio
58+
if: ${{ steps.paths.outputs.libaio_SOURCE }}
59+
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests libaio
5760
- name: Fetch libdwarf
5861
if: ${{ steps.paths.outputs.libdwarf_SOURCE }}
5962
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests libdwarf
@@ -284,6 +287,22 @@ jobs:
284287
with:
285288
path: ${{ steps.paths.outputs.googletest_INSTALL }}
286289
key: ${{ steps.paths.outputs.googletest_CACHE_KEY }}-install
290+
- name: Restore libaio from cache
291+
id: restore_libaio
292+
if: ${{ steps.paths.outputs.libaio_SOURCE }}
293+
uses: actions/cache/restore@v4
294+
with:
295+
path: ${{ steps.paths.outputs.libaio_INSTALL }}
296+
key: ${{ steps.paths.outputs.libaio_CACHE_KEY }}-install
297+
- name: Build libaio
298+
if: ${{ steps.paths.outputs.libaio_SOURCE && ! steps.restore_libaio.outputs.cache-hit }}
299+
run: python3 build/fbcode_builder/getdeps.py build --no-tests libaio
300+
- name: Save libaio to cache
301+
uses: actions/cache/save@v4
302+
if: ${{ steps.paths.outputs.libaio_SOURCE && ! steps.restore_libaio.outputs.cache-hit }}
303+
with:
304+
path: ${{ steps.paths.outputs.libaio_INSTALL }}
305+
key: ${{ steps.paths.outputs.libaio_CACHE_KEY }}-install
287306
- name: Restore libdwarf from cache
288307
id: restore_libdwarf
289308
if: ${{ steps.paths.outputs.libdwarf_SOURCE }}

0 commit comments

Comments
 (0)