Skip to content

Commit 04d2502

Browse files
committed
Add release workflow
1 parent 97e5a70 commit 04d2502

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/release.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Release
2+
on:
3+
push:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build:
8+
uses: ./.github/workflows/build2.yml
9+
strategy:
10+
matrix:
11+
kernel: [{ack: 0, version: 5.10.y}, {ack: 0, version: 5.15.y}, {ack: 0, version: 6.1.y}, {ack: 0, version: 6.6.y}, {ack: 1, version: android13-5.10-lts}, {ack: 1, version: android14-5.15-lts}]
12+
arch: [arm64, x86_64]
13+
with:
14+
host-os: ubuntu-20.04
15+
ack: ${{ matrix.kernel.ack }}
16+
arch: ${{ matrix.arch }}
17+
version: ${{ matrix.kernel.version }}
18+
19+
build-and-test:
20+
uses: ./.github/workflows/build-and-test.yml
21+
strategy:
22+
matrix:
23+
kernel: [{ack: 0, version: 5.10.y}, {ack: 0, version: 5.15.y}, {ack: 0, version: 6.1.y}, {ack: 0, version: 6.6.y}, {ack: 1, version: android13-5.10-lts}, {ack: 1, version: android14-5.15-lts}]
24+
arch: [arm64, x86_64]
25+
with:
26+
host-os: ubuntu-22.04
27+
ack: ${{ matrix.kernel.ack }}
28+
arch: ${{ matrix.arch }}
29+
version: ${{ matrix.kernel.version }}

0 commit comments

Comments
 (0)