diff options
| author | Michael Peter Christen <mc@yacy.net> | 2022-06-13 12:14:42 +0200 |
|---|---|---|
| committer | Michael Peter Christen <mc@yacy.net> | 2022-06-13 12:14:42 +0200 |
| commit | c3307231d408908540b86b3e21406d9a542d8e5a (patch) | |
| tree | bc243122a5d7fbea3f47a01b3d015fa2e17641c1 /.github/workflows | |
| parent | 04b0e32bc7987cb7f581f3b2af78f9a8d110b761 (diff) | |
added ci script
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ant-build-selfhosted.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/ant-build-selfhosted.yaml b/.github/workflows/ant-build-selfhosted.yaml new file mode 100644 index 000000000..91e752e37 --- /dev/null +++ b/.github/workflows/ant-build-selfhosted.yaml @@ -0,0 +1,16 @@ +name: CI Script to build on self-hosted server + +on: push + +jobs: + build: + runs-on: self-hosted + steps: + - uses: actions/checkout@master + - name: Set up JDK 8 + uses: actions/setup-java@v3 + with: + java-version: '8' + distribution: 'temurin' + - name: Build with ant + run: ant clean all dist |
