Some checks failed
Build and Release / build (0.116.10+1.21.1, 1.21.1, 1.21.1+build.3) (pull_request) Failing after 4m54s
Build and Release / build (0.106.1+1.21.2, 1.21.2, 1.21.2+build.1) (pull_request) Failing after 5m54s
Build and Release / build (0.114.1+1.21.3, 1.21.3, 1.21.3+build.2) (pull_request) Failing after 7m1s
Build and Release / build (0.119.4+1.21.4, 1.21.4, 1.21.4+build.8) (pull_request) Failing after 2m10s
Build and Release / build (0.128.2+1.21.5, 1.21.5, 1.21.5+build.1) (pull_request) Failing after 2m35s
Build and Release / build (0.129.0+1.21.7, 1.21.7, 1.21.7+build.8) (pull_request) Failing after 1m49s
Build and Release / build (0.128.2+1.21.6, 1.21.6, 1.21.6+build.1) (pull_request) Failing after 3m39s
Build and Release / build (0.136.1+1.21.8, 1.21.8, 1.21.8+build.1) (pull_request) Failing after 1m49s
Build and Release / build (0.134.1+1.21.9, 1.21.9, 1.21.9+build.1) (pull_request) Failing after 2m54s
Build and Release / build (0.141.3+1.21.11, 1.21.11, 1.21.11+build.4) (pull_request) Failing after 1m48s
Build and Release / build (0.138.4+1.21.10, 1.21.10, 1.21.10+build.3) (pull_request) Failing after 3m19s
Build and Release / publish (pull_request) Has been skipped
38 lines
920 B
YAML
38 lines
920 B
YAML
name: Dev Verify
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
pull_request:
|
|
branches:
|
|
- dev
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
verify:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: gradle:9.5.1-jdk21@sha256:b1210616becadef85acbafeeb09b44bb64f4b982f3d876e7621341125ae3c431
|
|
env:
|
|
GITEA_TOKEN: ${{ github.token }}
|
|
GITEA_API_URL: ${{ github.server_url }}/api/v1
|
|
GITEA_REPO: ${{ github.repository }}
|
|
GITEA_REPO_URL: ${{ github.server_url }}/${{ github.repository }}.git
|
|
steps:
|
|
- name: Prepare source
|
|
shell: bash
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
if [ ! -f build.gradle ]; then
|
|
git -c http.extraHeader="Authorization: token ${GITEA_TOKEN}" \
|
|
clone --depth 1 "${GITEA_REPO_URL}" .
|
|
fi
|
|
|
|
- name: Verify
|
|
shell: bash
|
|
run: |
|
|
set -euo pipefail
|
|
gradle --no-daemon compileClientJava
|