diff options
author | ebraminio <ebrahim@gnu.org> | 2017-11-01 02:10:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-01 02:10:18 -0700 |
commit | 102f5ead493ad2eac6c11c3fc8f2e793d3d57058 (patch) | |
tree | 07aef5dd02bc2c5fe1b2450c1774c20c71a337a5 /.circleci | |
parent | 65d4e5bcda543c17e09867418365ba44b441d5d6 (diff) |
Enable PSVita (arm-none-eabi) compile again and add it to CI (#594)
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index d4835e44..85635908 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,8 +1,5 @@ version: 2 -branches: - ignore: - - gh-pages jobs: base: @@ -13,6 +10,15 @@ jobs: - run: apt update && apt install ragel - run: cmake -Bbuild -H. -GNinja && ninja -Cbuild + psvita: + docker: + - image: dockcross/base + steps: + - checkout + - run: apt update && apt install ragel + - run: git clone https://github.com/vitasdk/vdpm && cd vdpm && ./bootstrap-vitasdk.sh + - run: cmake -Bbuild -H. -GNinja -DCMAKE_TOOLCHAIN_FILE=/usr/local/vitasdk/share/vita.toolchain.cmake && ninja -Cbuild + android-arm: docker: - image: dockcross/android-arm @@ -58,8 +64,13 @@ workflows: build: jobs: - base + - psvita - android-arm - browser-asmjs - linux-arm64 - linux-mips - windows-x64 + +branches: + ignore: + - gh-pages |