mirror of
https://github.com/GayPizzaSpecifications/concrete.git
synced 2025-08-05 06:01:34 +00:00
GitHub workflow for building samples.
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
name: Build
|
||||
name: Plugin
|
||||
on: [push]
|
||||
jobs:
|
||||
build:
|
25
.github/workflows/samples.yml
vendored
Normal file
25
.github/workflows/samples.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
name: Samples
|
||||
on: [push]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v3
|
||||
- name: Set up JDK 17
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: '17'
|
||||
distribution: 'temurin'
|
||||
- name: Build mixed sample with Gradle
|
||||
uses: gradle/gradle-build-action@v2
|
||||
with:
|
||||
arguments: -P samples/mixed build
|
||||
- name: Build shared sample with Gradle
|
||||
uses: gradle/gradle-build-action@v2
|
||||
with:
|
||||
arguments: -P samples/shared build
|
||||
- name: Build simple sample with Gradle
|
||||
uses: gradle/gradle-build-action@v2
|
||||
with:
|
||||
arguments: -P samples/simple build
|
Reference in New Issue
Block a user