Back Core and Platform version to snapshot #8219
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: Linux Native CLI | |
on: | |
push: | |
branches: | |
- '[1-9]+.[0-9]+.x' | |
pull_request: | |
branches: | |
- '[1-9]+.[0-9]+.x' | |
jobs: | |
build: | |
name: Builds Linux Native CLI | |
runs-on: ubuntu-latest | |
steps: | |
- name: "⬇ Checkout the repository" | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: "☕️ Setup GraalVM CE" | |
uses: graalvm/[email protected] | |
with: | |
java-version: '21' | |
distribution: 'graalvm-community' | |
native-image-musl: 'true' | |
components: 'native-image' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: "📸 Build the Native Image (with libc=musl)" | |
run: ./gradlew micronaut-cli:nativeCompile --no-daemon -Pmusl | |
env: | |
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USERNAME }} | |
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} | |
- name: "✅ Verify Build" | |
run: ./starter-cli/build/native/nativeCompile/mn --version | |
- name: "✅ Verify Create App" | |
run: ./starter-cli/build/native/nativeCompile/mn create-app test | |
- name: "👷♀️Package Build" | |
env: | |
VERSION: ${{ github.event.release.tag_name }} | |
run: | | |
mkdir -p mn-linux-amd64-snapshot/bin | |
mv ./starter-cli/build/native/nativeCompile/mn mn-linux-amd64-snapshot/bin | |
cp ./LICENSE mn-linux-amd64-snapshot/ | |
zip -r mn-linux-amd64-snapshot.zip ./mn-linux-amd64-snapshot | |
- name: "🆙 Upload Snapshot" | |
if: success() && github.event_name == 'push' && github.ref == 'refs/heads/4.7.x' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: mn-linux-amd64-snapshot | |
path: mn-linux-amd64-snapshot.zip |