This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
Bump ch.qos.logback:logback-classic from 1.2.10 to 1.2.13 in /examples/mvn-hello-world/hello-world #884
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 and Test the Native Cli | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build-binary: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Checkout GitHub merge | |
if: github.event.pull_request | |
run: |- | |
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch | |
git checkout scratch | |
- name: Set up GraalVM JDK 11 | |
uses: olafurpg/setup-scala@v10 | |
with: | |
java-version: [email protected] | |
- name: Cache Coursier cache | |
uses: coursier/cache-action@v5 | |
- name: Build and run the binary | |
run: | | |
cd core | |
gu install native-image | |
sbt cloudflow-cli/graalvm-native-image:packageBin | |
# Check that the binary runs at least | |
cloudflow-cli/target/graalvm-native-image/kubectl-cloudflow version --log-level=trace |