Skip to content

Commit 474fe8d

Browse files
committed
ci(wip): build plugins
Signed-off-by: Yi Huang <yi@secondstate.io>
1 parent 4216eb7 commit 474fe8d

File tree

3 files changed

+49
-0
lines changed

3 files changed

+49
-0
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: Build
3+
4+
on:
5+
pull_request:
6+
branches: [main]
7+
8+
permissions: {}
9+
10+
jobs:
11+
manylinux_2_28:
12+
uses: ./.github/workflows/manylinux_2_28.yml
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: manylinux_2_28
3+
4+
on:
5+
workflow_call:
6+
inputs:
7+
release:
8+
type: boolean
9+
default: false
10+
11+
permissions: {}
12+
13+
jobs:
14+
prepare:
15+
uses: ./.github/workflows/parse-plugins.yml
16+
with:
17+
tags:
18+
- manylinux_2_28_aarch64
19+
- manylinux_2_28_x86_64
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Parse plugins
3+
4+
on:
5+
workflow_call:
6+
inputs:
7+
tags:
8+
type: string
9+
required: true
10+
11+
permissions: {}
12+
13+
jobs:
14+
echo:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- run: |
18+
echo "${{ inputs.tags }}"

0 commit comments

Comments
 (0)