|
81 | 81 | - name: Fetch zlib
|
82 | 82 | if: ${{ steps.paths.outputs.zlib_SOURCE }}
|
83 | 83 | run: python3 build/fbcode_builder/getdeps.py --allow-system-packages fetch --no-tests zlib
|
84 |
| - - name: Fetch bz2 |
85 |
| - if: ${{ steps.paths.outputs.bz2_SOURCE }} |
86 |
| - run: python3 build/fbcode_builder/getdeps.py --allow-system-packages fetch --no-tests bz2 |
87 | 84 | - name: Fetch openssl
|
88 | 85 | if: ${{ steps.paths.outputs.openssl_SOURCE }}
|
89 | 86 | run: python3 build/fbcode_builder/getdeps.py --allow-system-packages fetch --no-tests openssl
|
@@ -120,15 +117,6 @@ jobs:
|
120 | 117 | - name: Fetch mvfst
|
121 | 118 | if: ${{ steps.paths.outputs.mvfst_SOURCE }}
|
122 | 119 | run: python3 build/fbcode_builder/getdeps.py --allow-system-packages fetch --no-tests mvfst
|
123 |
| - - name: Fetch libffi |
124 |
| - if: ${{ steps.paths.outputs.libffi_SOURCE }} |
125 |
| - run: python3 build/fbcode_builder/getdeps.py --allow-system-packages fetch --no-tests libffi |
126 |
| - - name: Fetch ncurses |
127 |
| - if: ${{ steps.paths.outputs.ncurses_SOURCE }} |
128 |
| - run: python3 build/fbcode_builder/getdeps.py --allow-system-packages fetch --no-tests ncurses |
129 |
| - - name: Fetch python |
130 |
| - if: ${{ steps.paths.outputs.python_SOURCE }} |
131 |
| - run: python3 build/fbcode_builder/getdeps.py --allow-system-packages fetch --no-tests python |
132 | 120 | - name: Fetch wangle
|
133 | 121 | if: ${{ steps.paths.outputs.wangle_SOURCE }}
|
134 | 122 | run: python3 build/fbcode_builder/getdeps.py --allow-system-packages fetch --no-tests wangle
|
@@ -397,22 +385,6 @@ jobs:
|
397 | 385 | with:
|
398 | 386 | path: ${{ steps.paths.outputs.zlib_INSTALL }}
|
399 | 387 | key: ${{ steps.paths.outputs.zlib_CACHE_KEY }}-install
|
400 |
| - - name: Restore bz2 from cache |
401 |
| - id: restore_bz2 |
402 |
| - if: ${{ steps.paths.outputs.bz2_SOURCE }} |
403 |
| - uses: actions/cache/restore@v4 |
404 |
| - with: |
405 |
| - path: ${{ steps.paths.outputs.bz2_INSTALL }} |
406 |
| - key: ${{ steps.paths.outputs.bz2_CACHE_KEY }}-install |
407 |
| - - name: Build bz2 |
408 |
| - if: ${{ steps.paths.outputs.bz2_SOURCE && ! steps.restore_bz2.outputs.cache-hit }} |
409 |
| - run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --free-up-disk --no-tests bz2 |
410 |
| - - name: Save bz2 to cache |
411 |
| - uses: actions/cache/save@v4 |
412 |
| - if: ${{ steps.paths.outputs.bz2_SOURCE && ! steps.restore_bz2.outputs.cache-hit }} |
413 |
| - with: |
414 |
| - path: ${{ steps.paths.outputs.bz2_INSTALL }} |
415 |
| - key: ${{ steps.paths.outputs.bz2_CACHE_KEY }}-install |
416 | 388 | - name: Restore openssl from cache
|
417 | 389 | id: restore_openssl
|
418 | 390 | if: ${{ steps.paths.outputs.openssl_SOURCE }}
|
@@ -605,54 +577,6 @@ jobs:
|
605 | 577 | with:
|
606 | 578 | path: ${{ steps.paths.outputs.mvfst_INSTALL }}
|
607 | 579 | key: ${{ steps.paths.outputs.mvfst_CACHE_KEY }}-install
|
608 |
| - - name: Restore libffi from cache |
609 |
| - id: restore_libffi |
610 |
| - if: ${{ steps.paths.outputs.libffi_SOURCE }} |
611 |
| - uses: actions/cache/restore@v4 |
612 |
| - with: |
613 |
| - path: ${{ steps.paths.outputs.libffi_INSTALL }} |
614 |
| - key: ${{ steps.paths.outputs.libffi_CACHE_KEY }}-install |
615 |
| - - name: Build libffi |
616 |
| - if: ${{ steps.paths.outputs.libffi_SOURCE && ! steps.restore_libffi.outputs.cache-hit }} |
617 |
| - run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --free-up-disk --no-tests libffi |
618 |
| - - name: Save libffi to cache |
619 |
| - uses: actions/cache/save@v4 |
620 |
| - if: ${{ steps.paths.outputs.libffi_SOURCE && ! steps.restore_libffi.outputs.cache-hit }} |
621 |
| - with: |
622 |
| - path: ${{ steps.paths.outputs.libffi_INSTALL }} |
623 |
| - key: ${{ steps.paths.outputs.libffi_CACHE_KEY }}-install |
624 |
| - - name: Restore ncurses from cache |
625 |
| - id: restore_ncurses |
626 |
| - if: ${{ steps.paths.outputs.ncurses_SOURCE }} |
627 |
| - uses: actions/cache/restore@v4 |
628 |
| - with: |
629 |
| - path: ${{ steps.paths.outputs.ncurses_INSTALL }} |
630 |
| - key: ${{ steps.paths.outputs.ncurses_CACHE_KEY }}-install |
631 |
| - - name: Build ncurses |
632 |
| - if: ${{ steps.paths.outputs.ncurses_SOURCE && ! steps.restore_ncurses.outputs.cache-hit }} |
633 |
| - run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --free-up-disk --no-tests ncurses |
634 |
| - - name: Save ncurses to cache |
635 |
| - uses: actions/cache/save@v4 |
636 |
| - if: ${{ steps.paths.outputs.ncurses_SOURCE && ! steps.restore_ncurses.outputs.cache-hit }} |
637 |
| - with: |
638 |
| - path: ${{ steps.paths.outputs.ncurses_INSTALL }} |
639 |
| - key: ${{ steps.paths.outputs.ncurses_CACHE_KEY }}-install |
640 |
| - - name: Restore python from cache |
641 |
| - id: restore_python |
642 |
| - if: ${{ steps.paths.outputs.python_SOURCE }} |
643 |
| - uses: actions/cache/restore@v4 |
644 |
| - with: |
645 |
| - path: ${{ steps.paths.outputs.python_INSTALL }} |
646 |
| - key: ${{ steps.paths.outputs.python_CACHE_KEY }}-install |
647 |
| - - name: Build python |
648 |
| - if: ${{ steps.paths.outputs.python_SOURCE && ! steps.restore_python.outputs.cache-hit }} |
649 |
| - run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --free-up-disk --no-tests python |
650 |
| - - name: Save python to cache |
651 |
| - uses: actions/cache/save@v4 |
652 |
| - if: ${{ steps.paths.outputs.python_SOURCE && ! steps.restore_python.outputs.cache-hit }} |
653 |
| - with: |
654 |
| - path: ${{ steps.paths.outputs.python_INSTALL }} |
655 |
| - key: ${{ steps.paths.outputs.python_CACHE_KEY }}-install |
656 | 580 | - name: Restore wangle from cache
|
657 | 581 | id: restore_wangle
|
658 | 582 | if: ${{ steps.paths.outputs.wangle_SOURCE }}
|
|
0 commit comments