-
Notifications
You must be signed in to change notification settings - Fork 16
52 lines (47 loc) · 1.45 KB
/
make_cache.yaml
File metadata and controls
52 lines (47 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Make cache deps
on:
workflow_call:
jobs:
check-cache:
uses: ./.github/workflows/check_cache.yaml
linux-x64-make-cache:
runs-on: ubuntu-22.04
needs: [check-cache]
if: ${{ needs.check-cache.outputs.linux_x64_hit == false }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup_ubuntu_env
- uses: ./.github/actions/enable_python
- uses: ./.github/actions/enable_conan
with:
profile: linux-gcc12_x64
macos-arm-make-cache:
runs-on: macos-14
needs: [check-cache]
if: ${{ needs.check-cache.outputs.macos_arm_hit == false }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/enable_python_macos
- uses: ./.github/actions/enable_conan
with:
profile: macos-clang15_arm
macos-x64-make-cache:
runs-on: macos-13
needs: [check-cache]
if: ${{ needs.check-cache.outputs.macos_x64_hit == false }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/enable_python_macos
- uses: ./.github/actions/enable_conan
with:
profile: macos-clang15_x64
win-x64-make-cache:
runs-on: windows-2022
needs: [check-cache]
if: ${{ needs.check-cache.outputs.win_x64_hit == false }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/enable_python
- uses: ./.github/actions/enable_conan
with:
profile: win-msvc194_x64