-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (33 loc) · 1.04 KB
/
build-libcurl.yaml
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
name: Build libcurl
on:
push:
paths:
- .github/actions/build-package/action.yaml
- .github/workflows/build-libcurl.yaml
- packages/libcurl/**
- toolchains/**
- build.py
- scripts/tools.py
jobs:
build:
runs-on: ${{ matrix.cfg.os }}
env:
PACKAGE: libcurl
strategy:
fail-fast: false
matrix:
cfg:
- { os: ubuntu-20.04, triple: linux-x64-clang10 }
- { os: ubuntu-20.04, triple: linux-x64-gcc9 }
- { os: ubuntu-20.04, triple: linux-armv7-gcc9 }
- { os: ubuntu-20.04, triple: linux-aarch64-gcc9 }
- { os: windows-2022, triple: windows-x64-msvc143 }
- { os: windows-2022, triple: windows-arm64-msvc143 }
- { os: windows-2022, triple: windows-x64-mingw64 }
- { os: macos-14, triple: macos-x64-gcc }
- { os: macos-14, triple: macos-arm64-gcc }
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build package
uses: ./.github/actions/build-package