Better information extraction from x509 command (#20)
- Fixes some issues with IPv6-only build on Forgejo - Adds experimental Dockerfile for devemopment deployment Co-authored-by: Ghost <> Co-committed-by: Ghost <>
This commit is contained in:
parent
0cac57dd15
commit
2b640d7578
19 changed files with 2429 additions and 939 deletions
30
.forgejo/workflows/build.yml
Normal file
30
.forgejo/workflows/build.yml
Normal file
|
@ -0,0 +1,30 @@
|
|||
name: Build
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
concurrency:
|
||||
cancel-in-progress: true
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
|
||||
env:
|
||||
HTTP_PROXY: http://6.fsn1-1.forsaken-ashbirds.net:8888
|
||||
HTTPS_PROXY: http://6.fsn1-1.forsaken-ashbirds.net:8888
|
||||
GRADLE_OPTS: -Dhttp.proxyHost=6.fsn1-1.forsaken-ashbirds.net -Dhttp.proxyPort=8888 -Dhttps.proxyHost=6.fsn1-1.forsaken-ashbirds.net -Dhttps.proxyPort=8888
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- uses: https://github.com/actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: 21
|
||||
- uses: https://github.com/gradle/actions/setup-gradle@v4
|
||||
- name: Build gradle project
|
||||
run: ./gradlew build
|
Loading…
Add table
Add a link
Reference in a new issue