Build Linux x86_64 #7
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 Linux x86_64 | |
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 libcurl3-dev | |
- name: Run build | |
run: ./gradlew buildLambdaRelease --stacktrace | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
path: sample/build/lambda/release/sample.zip |