Build Linux64 curl-engine-branch #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Linux64 curl-engine-branch | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Configure JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Install libcurl | |
run: | | |
sudo apt-get update | |
sudo apt-get install libcurl4-gnutls-dev | |
- 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 |