yacy_search_server/.github/workflows/ant-build-selfhosted.yaml

19 lines
394 B
YAML
Raw Normal View History

2022-06-13 12:14:42 +02:00
name: CI Script to build on self-hosted server
on: push
jobs:
build:
runs-on: self-hosted
2023-03-05 01:40:08 +01:00
if: github.repository == 'yacy/yacy_search_server'
2022-06-13 12:14:42 +02:00
steps:
- uses: actions/checkout@master
2023-08-31 18:03:04 +02:00
- name: Set up JDK 11
2022-06-13 12:14:42 +02:00
uses: actions/setup-java@v3
with:
2023-08-31 18:03:04 +02:00
java-version: '11'
2022-06-13 12:14:42 +02:00
distribution: 'temurin'
2022-10-03 18:23:03 +02:00
- name: Build linux release
2022-06-13 12:14:42 +02:00
run: ant clean all dist
2022-10-04 00:01:53 +02:00