Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 49dbd0d

Browse files
committedJan 12, 2025
native build CI pipeline
1 parent 2080504 commit 49dbd0d

File tree

3 files changed

+44
-0
lines changed

3 files changed

+44
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# CI build native image
2+
#
3+
# version 1.0.0
4+
5+
name: CI build native image
6+
7+
on:
8+
push:
9+
branches:
10+
- branch-preview
11+
- main
12+
13+
jobs:
14+
build:
15+
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- uses: actions/checkout@main
20+
- name: Set up JDK 21
21+
uses: actions/setup-java@main
22+
with:
23+
java-version: '21'
24+
distribution: 'graalvm'
25+
cache: gradle
26+
- name: Build project
27+
run: ./gradlew build -Dquarkus.native.enabled=true -Dquarkus.package.jar.enabled=false

‎CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
### Added
11+
12+
- native build CI pipeline

‎README.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
Demo application for [FreeMarker Native](https://github.com/fugerit-org/freemarker-native) project, based on [Quarkus](https://quarkus.io/).
44

5+
[![Keep a Changelog v1.1.0 badge](https://img.shields.io/badge/changelog-Keep%20a%20Changelog%20v1.1.0-%23E05735)](https://github.com/fugerit-org/graalkus/blob/master/CHANGELOG.md)
6+
[![license](https://img.shields.io/badge/License-MIT%20License-teal.svg)](https://opensource.org/license/mit)
7+
[![code of conduct](https://img.shields.io/badge/conduct-Contributor%20Covenant-purple.svg)](https://github.com/fugerit-org/fj-universe/blob/main/CODE_OF_CONDUCT.md)
8+
[![CI build native image](https://github.com/fugerit-org/freemarker-native-demo/actions/workflows/build_scan_gradle_project.yml/badge.svg)](https://github.com/fugerit-org/freemarker-native-demo/actions/workflows/build_scan_gradle_project.yml)
9+
510
## Quickstart
611

712
Requirements :

0 commit comments

Comments
 (0)
Please sign in to comment.