Add mips64el target in circleci

This commit is contained in:
Cheng Zhao 2017-10-27 21:12:40 +09:00
Родитель ec42b18e0e
Коммит e1151b5262
2 изменённых файлов: 24 добавлений и 0 удалений

Просмотреть файл

@ -156,6 +156,22 @@ jobs:
- store_artifacts:
path: libchromiumcontent-static.zip
libchromiumcontent-linux-mips64el:
docker:
- image: electronbuilds/libchromiumcontent:0.0.4
environment:
TARGET_ARCH: mips64el
resource_class: xlarge
steps:
- checkout
- run: script/bootstrap
- run: script/update --clean -t $TARGET_ARCH
- run: script/build -t $TARGET_ARCH -c static_library
- run: script/build -t $TARGET_ARCH -c shared_library
- run: script/build -t $TARGET_ARCH -c ffmpeg
- run: script/create-dist -t $TARGET_ARCH
- run: script/upload -t $TARGET_ARCH
workflows:
version: 2
build-x64:
@ -170,3 +186,6 @@ workflows:
build-arm64:
jobs:
- libchromiumcontent-linux-arm64
build-mips64el:
jobs:
- libchromiumcontent-linux-mips64el

Просмотреть файл

@ -0,0 +1,5 @@
#!/usr/bin/env bash
export TARGET_ARCH=mips64el
script/cibuild-libchromiumcontent-linux