diff options
| author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-02-07 11:02:38 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-07 11:02:38 +0000 |
| commit | ce73c88055ebd3e6e129fc41ab3fee47d21ccd9e (patch) | |
| tree | 92b6d40705c0d84a7d6be00eddec6085d9a7dc7b | |
| parent | ece2c30b997c900d82bdfd66594b624adcb62d3d (diff) | |
| download | GT5-Unofficial-ce73c88055ebd3e6e129fc41ab3fee47d21ccd9e.tar.gz GT5-Unofficial-ce73c88055ebd3e6e129fc41ab3fee47d21ccd9e.tar.bz2 GT5-Unofficial-ce73c88055ebd3e6e129fc41ab3fee47d21ccd9e.zip | |
% Updated CircleCI config
| -rw-r--r-- | .circleci/config.yml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 029af5643f..fea0ea02a6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2 jobs: build: - working_directory: ~/code + working_directory: ~/repo docker: - image: circleci/openjdk:8-jdk @@ -26,6 +26,10 @@ jobs: - run: name: Unzip Forge command: unzip -o forge-1.7.10-10.13.4.1614-1.7.10-src.zip + + - run: + name: Dependencies + command: gradle dependencies - run: name: Chmod permissions #if permission for Gradlew Dependencies fail, use this. @@ -33,15 +37,15 @@ jobs: - run: name: Setup Forge/MCP - command: ./gradlew SetupCIWorkspace + command: gradle SetupCIWorkspace - run: name: Eclipse Setup - command: ./gradlew eclipse + command: gradle eclipse - run: name: Build GT++ - command: ./gradlew build + command: gradle build - save_cache: paths: |
