Skip to content

Commit d2c9af8

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 cd474b1 commit d2c9af8

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/edencommon_linux.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ jobs:
6464
- name: Fetch fast_float
6565
if: ${{ steps.paths.outputs.fast_float_SOURCE }}
6666
run: python3 build/fbcode_builder/getdeps.py --allow-system-packages fetch --no-tests fast_float
67+
- name: Fetch libaio
68+
if: ${{ steps.paths.outputs.libaio_SOURCE }}
69+
run: python3 build/fbcode_builder/getdeps.py --allow-system-packages fetch --no-tests libaio
6770
- name: Fetch libdwarf
6871
if: ${{ steps.paths.outputs.libdwarf_SOURCE }}
6972
run: python3 build/fbcode_builder/getdeps.py --allow-system-packages fetch --no-tests libdwarf
@@ -300,6 +303,22 @@ jobs:
300303
with:
301304
path: ${{ steps.paths.outputs.fast_float_INSTALL }}
302305
key: ${{ steps.paths.outputs.fast_float_CACHE_KEY }}-install
306+
- name: Restore libaio from cache
307+
id: restore_libaio
308+
if: ${{ steps.paths.outputs.libaio_SOURCE }}
309+
uses: actions/cache/restore@v4
310+
with:
311+
path: ${{ steps.paths.outputs.libaio_INSTALL }}
312+
key: ${{ steps.paths.outputs.libaio_CACHE_KEY }}-install
313+
- name: Build libaio
314+
if: ${{ steps.paths.outputs.libaio_SOURCE && ! steps.restore_libaio.outputs.cache-hit }}
315+
run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --free-up-disk --no-tests libaio
316+
- name: Save libaio to cache
317+
uses: actions/cache/save@v4
318+
if: ${{ steps.paths.outputs.libaio_SOURCE && ! steps.restore_libaio.outputs.cache-hit }}
319+
with:
320+
path: ${{ steps.paths.outputs.libaio_INSTALL }}
321+
key: ${{ steps.paths.outputs.libaio_CACHE_KEY }}-install
303322
- name: Restore libdwarf from cache
304323
id: restore_libdwarf
305324
if: ${{ steps.paths.outputs.libdwarf_SOURCE }}

0 commit comments

Comments
 (0)