diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-02-07 09:56:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-07 09:56:01 +0000 |
commit | 0ed9f2e43c5d4e2e06b3a1f7d1bb8449e5af83a8 (patch) | |
tree | 7a7aa18c2acdaa8d504bea2e9c232b2a7ccedef6 | |
parent | ddef3451729b9a18c5c41af0936d26934d2ba6a8 (diff) | |
download | GT5-Unofficial-0ed9f2e43c5d4e2e06b3a1f7d1bb8449e5af83a8.tar.gz GT5-Unofficial-0ed9f2e43c5d4e2e06b3a1f7d1bb8449e5af83a8.tar.bz2 GT5-Unofficial-0ed9f2e43c5d4e2e06b3a1f7d1bb8449e5af83a8.zip |
% Updated CircleCI config
-rw-r--r-- | .circleci/config.yml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index d78502431e..54890efa01 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,27 +13,29 @@ jobs: steps: - checkout + #https://files.minecraftforge.net/maven/net/minecraftforge/forge/1.7.10-10.13.4.1614-1.7.10/forge-1.7.10-10.13.4.1614-1.7.10-src.zip + - restore_cache: key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} - - forge: - name: Setup Forge/MCP + - run: + name: Download Forge command: wget https://files.minecraftforge.net/maven/net/minecraftforge/forge/1.7.10-10.13.4.1614-1.7.10/forge-1.7.10-10.13.4.1614-1.7.10-src.zip - - zip: - name: Setup Forge/MCP + - run: + name: Unzip Forge command: unzip forge-1.7.10-10.13.4.1614-1.7.10-src.zip - - eclipse: + - run: name: Setup Forge/MCP command: ./gradlew setupDecompWorkspace - - clean: + - run: name: Ugh... command: ./gradlew eclipse - - build: + - run: name: Build GT++ command: ./gradlew build |