From cb5a0a07caa3f13096026fc1832e84e3308df846 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 8 May 2021 20:10:16 +0200 Subject: [PATCH 1/3] Create ci.yml --- .github/workflows/ci.yml | 53 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..c72697f --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,53 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the action will run. +on: + # Triggers the workflow on push or pull request events but only for the master branch + push: + branches: [ master ] + pull_request: + branches: [ master ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + - name: Setup Java JDK + - uses: actions/setup-java@v2.0.0 + with: + # The Java version to set up. Takes a whole or semver Java version. See examples of supported syntax in README file + java-version: '15' + # Java distribution. See the list of supported distributions in README file + distribution: 'adopt' + + # Runs a single command using the runners shell + - name: Compile + run: | + mkdir -p build + find -name "*.java" > sources + javac -cp lib/spigot-api-1.16.5-R0.1-20210421.073640-53.jar:lib/spigot-api-1.16.5-R0.1-20210421.073640-53-shaded.jar @sources -d build + cp res/* build + rm sources + cd build + jar cvf build.jar * + + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + automatic_release_tag: "latest" + prerelease: true + title: "CI Build" + files: | + build/build.jar From 0270890c031fdf027d6a83624c41457b4e6611a0 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 8 May 2021 20:11:35 +0200 Subject: [PATCH 2/3] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c72697f..4649298 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 - name: Setup Java JDK - - uses: actions/setup-java@v2.0.0 + uses: actions/setup-java@v2.0.0 with: # The Java version to set up. Takes a whole or semver Java version. See examples of supported syntax in README file java-version: '15' From 4dc483575881dbcd7f6da18dd2ab36ae567c296d Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 8 May 2021 20:25:59 +0200 Subject: [PATCH 3/3] Update ci.yml --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4649298..ca9bebc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,8 +36,10 @@ jobs: - name: Compile run: | mkdir -p build + jar_url=$(curl https://hub.spigotmc.org/nexus/content/repositories/snapshots/org/spigotmc/spigot-api/1.16.5-R0.1-SNAPSHOT/ | grep "shaded.jar\"" | tail -1 | sed "s/.*href=\"\(.*\)\".*/\1/g") + curl $jar_url > spigot-shaded.jar find -name "*.java" > sources - javac -cp lib/spigot-api-1.16.5-R0.1-20210421.073640-53.jar:lib/spigot-api-1.16.5-R0.1-20210421.073640-53-shaded.jar @sources -d build + javac -cp spigot-shaded.jar @sources -d build cp res/* build rm sources cd build