Skip to content

Commit

Permalink
Merge branch 'refs/heads/master' into curl-engine-experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
trueangle committed Aug 8, 2024
2 parents 48d4c0c + c07f136 commit 3f71d70
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/buildLinuxArm64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build LinuxArm64
on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Configure JDK
uses: actions/setup-java@v1
with:
java-version: 17

- name: Run build
run: ./gradlew build

- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: kotlin-native-arm-build
path: sample/build/bin/linuxArm64/releaseExecutable

0 comments on commit 3f71d70

Please sign in to comment.