summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2021-01-28 12:09:14 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2021-01-28 12:09:14 +0100
commit9fa09e20e10ed45ec0a59cdcc4484223d4eb9391 (patch)
tree92b9638517a547d8a92d380024fe3465f128833e /.github/workflows
parentClarify docker image tags (sha and build) (diff)
downloadseven-wonders-9fa09e20e10ed45ec0a59cdcc4484223d4eb9391.tar.gz
seven-wonders-9fa09e20e10ed45ec0a59cdcc4484223d4eb9391.tar.bz2
seven-wonders-9fa09e20e10ed45ec0a59cdcc4484223d4eb9391.zip
Split PR and CI/CD builds
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci-cd.yml (renamed from .github/workflows/ci.yml)8
-rw-r--r--.github/workflows/pr-build.yml32
2 files changed, 35 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci-cd.yml
index 88f9f05f..24f170c6 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci-cd.yml
@@ -1,10 +1,8 @@
-name: CI Build
+name: ci-cd
on:
push:
- branches: [ master ]
- pull_request:
- branches: [ master ]
+ branches: [ main ]
env:
DOCKERHUB_USER: hildan
@@ -14,7 +12,7 @@ env:
HEROKU_APP_NAME: seven-wonders-online
jobs:
- build:
+ build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml
new file mode 100644
index 00000000..67a9c9be
--- /dev/null
+++ b/.github/workflows/pr-build.yml
@@ -0,0 +1,32 @@
+name: pr-build
+
+on:
+ pull_request:
+ branches: [ main ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Set up JDK 15
+ uses: actions/setup-java@v1.4.3
+ with:
+ java-version: 15
+
+ - name: Gradle build cache
+ uses: actions/cache@v2
+ with:
+ path: ~/.gradle/caches
+ key: ${{ runner.os }}-gradle-build-${{ hashFiles('**/*.gradle*') }}
+ restore-keys: ${{ runner.os }}-gradle-build-
+
+ - name: Gradle wrapper cache
+ uses: actions/cache@v2
+ with:
+ path: ~/.gradle/wrapper
+ key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle-wrapper.properties') }}
+
+ - name: Build with Gradle
+ run: ./gradlew build
bgstack15