mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-23 00:51:01 +03:00
Merge pull request #369 from GravitLauncher/feature/actions
Feature/actions
This commit is contained in:
commit
edfc248351
4 changed files with 83 additions and 113 deletions
82
.github/workflows/push.yml
vendored
Normal file
82
.github/workflows/push.yml
vendored
Normal file
|
@ -0,0 +1,82 @@
|
||||||
|
name: push
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
create:
|
||||||
|
tags:
|
||||||
|
- v*
|
||||||
|
jobs:
|
||||||
|
launcher:
|
||||||
|
name: Launcher
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
- name: Cache Gradle
|
||||||
|
uses: actions/cache@v1
|
||||||
|
with:
|
||||||
|
path: ~/.gradle/caches
|
||||||
|
key: gravit-${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}-launcher
|
||||||
|
|
||||||
|
- name: Set up JDK 11
|
||||||
|
uses: actions/setup-java@v1
|
||||||
|
with:
|
||||||
|
java-version: 11
|
||||||
|
|
||||||
|
- name: Grant execute permission for gradlew
|
||||||
|
run: chmod +x gradlew
|
||||||
|
|
||||||
|
- name: Build with Gradle
|
||||||
|
run: ./gradlew build
|
||||||
|
|
||||||
|
- name: Create artifacts
|
||||||
|
run: |
|
||||||
|
mkdir -p artifacts/modules
|
||||||
|
cd LaunchServer/build/libs/
|
||||||
|
zip -r -9 ../../../artifacts/libraries.zip * -x "LaunchServer.jar" -x "LaunchServer-clean.jar"
|
||||||
|
cp LaunchServer.jar ../../../artifacts/LaunchServer.jar
|
||||||
|
cd ../../../ServerWrapper/build/libs
|
||||||
|
cp ServerWrapper.jar ../../../artifacts/ServerWrapper.jar
|
||||||
|
cd ../../../LauncherAuthlib/build/libs
|
||||||
|
cp LauncherAuthlib.jar ../../../artifacts/LauncherAuthlib.jar
|
||||||
|
cd ../../../
|
||||||
|
cp modules/*_module/build/libs/*.jar artifacts/modules
|
||||||
|
cp modules/*_swmodule/build/libs/*.jar artifacts/modules
|
||||||
|
cp modules/*_lmodule/build/libs/*.jar artifacts/modules
|
||||||
|
|
||||||
|
- name: Upload artifacts
|
||||||
|
uses: actions/upload-artifact@v1
|
||||||
|
with:
|
||||||
|
name: Launcher
|
||||||
|
path: artifacts
|
||||||
|
|
||||||
|
- name: Create release
|
||||||
|
id: create_release
|
||||||
|
uses: actions/create-release@v1
|
||||||
|
if: github.event_name == 'create'
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
tag_name: ${{ github.ref }}
|
||||||
|
release_name: GravitLauncher ${{ github.ref }}
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
|
|
||||||
|
- name: Pack release
|
||||||
|
if: github.event_name == 'create'
|
||||||
|
run: |
|
||||||
|
cd artifacts/
|
||||||
|
zip -r -9 ../Release.zip *
|
||||||
|
|
||||||
|
- name: Upload release
|
||||||
|
if: github.event_name == 'create'
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: ./Release.zip
|
||||||
|
asset_name: Release.zip
|
||||||
|
asset_content_type: application/zip
|
|
@ -1,90 +0,0 @@
|
||||||
image: gradle:jdk11
|
|
||||||
|
|
||||||
stages:
|
|
||||||
- build
|
|
||||||
- test
|
|
||||||
- deploy
|
|
||||||
variables:
|
|
||||||
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
|
|
||||||
|
|
||||||
before_script:
|
|
||||||
- apt-get -y update
|
|
||||||
- 'which zip || ( apt-get -y install zip )'
|
|
||||||
- 'which git || ( apt-get -y install git )'
|
|
||||||
- export GRADLE_USER_HOME=`pwd`/.gradle
|
|
||||||
- chmod +x gradlew
|
|
||||||
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
|
|
||||||
- eval $(ssh-agent -s)
|
|
||||||
- echo "$SSH_PRIVATE_KEY" | base64 -d | ssh-add - > /dev/null
|
|
||||||
- mkdir -p ~/.ssh
|
|
||||||
- chmod 700 ~/.ssh
|
|
||||||
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
|
|
||||||
- git submodule sync
|
|
||||||
- mv modules modules_cache || true
|
|
||||||
- git submodule update --init --recursive --force
|
|
||||||
- cp -a modules_cache/* modules/ || true
|
|
||||||
build:
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- gradle assemble
|
|
||||||
after_script:
|
|
||||||
- mkdir -p artifacts/modules
|
|
||||||
- cd LaunchServer/build/libs/
|
|
||||||
- zip -r -9 ../../../artifacts/libraries.zip * -x "LaunchServer.jar" -x "LaunchServer-clean.jar"
|
|
||||||
- cp LaunchServer.jar ../../../artifacts/LaunchServer.jar
|
|
||||||
- cd ../../../ServerWrapper/build/libs
|
|
||||||
- cp ServerWrapper.jar ../../../artifacts/ServerWrapper.jar
|
|
||||||
- cd ../../../LauncherAuthlib/build/libs
|
|
||||||
- cp LauncherAuthlib.jar ../../../artifacts/LauncherAuthlib.jar
|
|
||||||
- cd ../../../
|
|
||||||
- cp modules/*_module/build/libs/*.jar artifacts/modules
|
|
||||||
- cp modules/*_swmodule/build/libs/*.jar artifacts/modules
|
|
||||||
- cp modules/*_lmodule/build/libs/*.jar artifacts/modules
|
|
||||||
cache:
|
|
||||||
key: "$CI_COMMIT_REF_NAME"
|
|
||||||
paths:
|
|
||||||
- .gradle
|
|
||||||
- LaunchServer/build
|
|
||||||
- Launcher/build
|
|
||||||
- LauncherCore/build
|
|
||||||
- LauncherAPI/build
|
|
||||||
- LauncherAuthlib/build
|
|
||||||
- modules/*_*module/build
|
|
||||||
artifacts:
|
|
||||||
expire_in: 6 week
|
|
||||||
paths:
|
|
||||||
- artifacts
|
|
||||||
|
|
||||||
test:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- gradle check
|
|
||||||
cache:
|
|
||||||
key: "$CI_COMMIT_REF_NAME"
|
|
||||||
policy: pull
|
|
||||||
paths:
|
|
||||||
- .gradle
|
|
||||||
- LaunchServer/build
|
|
||||||
- Launcher/build
|
|
||||||
- LauncherCore/build
|
|
||||||
- LauncherAPI/build
|
|
||||||
- LauncherAuthlib/build
|
|
||||||
- modules/*_*module/build
|
|
||||||
|
|
||||||
deploy-demo:
|
|
||||||
stage: deploy
|
|
||||||
only: [dev]
|
|
||||||
script:
|
|
||||||
- gradle build
|
|
||||||
- eval $(ssh $SSH_USER@$SSH_HOST 'cd $SSH_DIR && cat deploy.sh')
|
|
||||||
cache:
|
|
||||||
key: "$CI_COMMIT_REF_NAME"
|
|
||||||
policy: pull
|
|
||||||
paths:
|
|
||||||
- .gradle
|
|
||||||
- LaunchServer/build
|
|
||||||
- Launcher/build
|
|
||||||
- LauncherCore/build
|
|
||||||
- LauncherAPI/build
|
|
||||||
- LauncherAuthlib/build
|
|
||||||
- modules/*_*module/build
|
|
2
.gitmodules
vendored
2
.gitmodules
vendored
|
@ -1,3 +1,3 @@
|
||||||
[submodule "modules"]
|
[submodule "modules"]
|
||||||
path = modules
|
path = modules
|
||||||
url = git@github.com:GravitLauncher/LauncherModules.git
|
url = https://github.com/GravitLauncher/LauncherModules.git
|
||||||
|
|
22
.travis.yml
22
.travis.yml
|
@ -1,22 +0,0 @@
|
||||||
language: java
|
|
||||||
dist: trusty
|
|
||||||
jdk:
|
|
||||||
- openjdk11
|
|
||||||
# Use https (public access) instead of git for git-submodules. This modifies only Travis-CI behavior!
|
|
||||||
# disable the default submodule logic
|
|
||||||
git:
|
|
||||||
submodules: false
|
|
||||||
# use sed to replace the SSH URL with the public URL, then init and update submodules
|
|
||||||
before_install:
|
|
||||||
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
|
|
||||||
- git submodule update --init --recursive
|
|
||||||
# gradle
|
|
||||||
before_cache:
|
|
||||||
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
|
|
||||||
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
|
|
||||||
cache:
|
|
||||||
directories:
|
|
||||||
- $HOME/.gradle/caches/
|
|
||||||
- $HOME/.gradle/wrapper/
|
|
||||||
script:
|
|
||||||
- ./gradlew build
|
|
Loading…
Reference in a new issue