Skip to content

Commit 3f71d70

Browse files
committed
Merge branch 'refs/heads/master' into curl-engine-experiment
2 parents 48d4c0c + c07f136 commit 3f71d70

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/buildLinuxArm64.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build LinuxArm64
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v3
11+
12+
- name: Configure JDK
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 17
16+
17+
- name: Run build
18+
run: ./gradlew build
19+
20+
- name: Upload artifacts
21+
uses: actions/upload-artifact@v3
22+
with:
23+
name: kotlin-native-arm-build
24+
path: sample/build/bin/linuxArm64/releaseExecutable

0 commit comments

Comments
 (0)