forked from I2P_Developers/i2p.i2p
35 lines
898 B
YAML
35 lines
898 B
YAML
# Mostly copied from https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-ant
|
|
# zlatinb
|
|
|
|
name: Java CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: GetText
|
|
run: sudo apt install gettext
|
|
- uses: actions/checkout@v2
|
|
- name: Set up JDK 8
|
|
uses: actions/setup-java@v2
|
|
with:
|
|
java-version: '8'
|
|
distribution: 'temurin'
|
|
- name : Generate override.properties
|
|
run: |
|
|
rm -f override.properties
|
|
echo "build.built-by=GitHub Actions" >> override.properties
|
|
echo "noExe=true" >> override.properties
|
|
- name: build with Ant
|
|
run: ant distclean pkg
|
|
- name: Upload installer.jar
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: I2P-install.jar-${{ github.sha }}
|
|
path: install.jar
|
|
|
|
|