dockcross/.circleci/config.yml

812 lines
30 KiB
YAML
Raw Normal View History

build-settings: &build-settings
machine: true
working_directory: ~/dockcross
2017-08-27 05:48:47 +02:00
version: 2
jobs:
base:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- checkout
- run:
name: base build
command: |
docker pull debian:jessie
make base
mkdir -p ~/docker
docker save -o ~/docker/base.tar debian:jessie dockcross/base:latest
- run:
name: base test
command: |
make base.test
- save_cache:
key: base-assets-{{ .Revision }}
paths:
- ~/docker/base.tar
- ~/dockcross
android-arm:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
name: android-arm build
no_output_timeout: 1.5h
command: |
docker load -i ~/docker/base.tar
make android-arm
tagged=$(docker images -q -f 'since=dockcross/android-arm:latest' --format '{{.Repository}}:{{.Tag}}' | grep android-arm)
docker save -o ~/docker/android-arm.tar dockcross/android-arm:latest $tagged
2017-08-27 05:48:47 +02:00
- run:
name: android-arm test
command: |
make android-arm.test
- save_cache:
key: android-arm-assets-{{ .Revision }}
paths: ~/docker/android-arm.tar
2018-03-19 13:55:14 +01:00
android-arm64:
<<: *build-settings
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
name: android-arm64 build
no_output_timeout: 1.5h
command: |
docker load -i ~/docker/base.tar
make android-arm64
tagged=$(docker images -q -f 'since=dockcross/android-arm64:latest' --format '{{.Repository}}:{{.Tag}}' | grep android-arm64)
docker save -o ~/docker/android-arm64.tar dockcross/android-arm64:latest $tagged
2018-03-19 13:55:14 +01:00
- run:
name: android-arm64 test
command: |
make android-arm64.test
- save_cache:
key: android-arm64-assets-{{ .Revision }}
paths: ~/docker/android-arm64.tar
web-wasm:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
name: web-wasm build
2017-08-27 05:48:47 +02:00
no_output_timeout: 1.5h
command: |
docker load -i ~/docker/base.tar
make web-wasm
tagged=$(docker images -q -f 'since=dockcross/web-wasm:latest' --format '{{.Repository}}:{{.Tag}}' | grep web-wasm)
docker save -o ~/docker/web-wasm.tar dockcross/web-wasm:latest $tagged
2017-08-27 05:48:47 +02:00
- run:
name: web-wasm test
2017-08-27 05:48:47 +02:00
command: |
make web-wasm.test
2017-08-27 05:48:47 +02:00
- save_cache:
key: web-wasm-assets-{{ .Revision }}
paths: ~/docker/web-wasm.tar
2017-08-27 05:48:47 +02:00
linux-arm64:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
name: linux-arm64 build
no_output_timeout: 1.5h
command: |
docker load -i ~/docker/base.tar
make linux-arm64
tagged=$(docker images -q -f 'since=dockcross/linux-arm64:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-arm64)
docker save -o ~/docker/linux-arm64.tar dockcross/linux-arm64:latest $tagged
- run:
name: linux-arm64 test
command: |
make linux-arm64.test
2017-08-27 05:48:47 +02:00
- save_cache:
key: linux-arm64-assets-{{ .Revision }}
paths: ~/docker/linux-arm64.tar
linux-armv5:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
name: linux-armv5 build
no_output_timeout: 1.5h
command: |
docker load -i ~/docker/base.tar
make linux-armv5
tagged=$(docker images -q -f 'since=dockcross/linux-armv5:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-armv5)
docker save -o ~/docker/linux-armv5.tar dockcross/linux-armv5:latest $tagged
- run:
name: linux-armv5 test
command: |
make linux-armv5.test
2017-08-27 05:48:47 +02:00
- save_cache:
key: linux-armv5-assets-{{ .Revision }}
paths: ~/docker/linux-armv5.tar
linux-armv6:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
name: linux-armv6 build
no_output_timeout: 1.5h
command: |
docker load -i ~/docker/base.tar
make linux-armv6
tagged=$(docker images -q -f 'since=dockcross/linux-armv6:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-armv6)
docker save -o ~/docker/linux-armv6.tar dockcross/linux-armv6:latest $tagged
2017-08-27 05:48:47 +02:00
- run:
name: linux-armv6 test
command: |
make linux-armv6.test
- save_cache:
key: linux-armv6-assets-{{ .Revision }}
paths: ~/docker/linux-armv6.tar
linux-armv7:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
name: linux-armv7 build
no_output_timeout: 1.5h
command: |
docker load -i ~/docker/base.tar
make linux-armv7
tagged=$(docker images -q -f 'since=dockcross/linux-armv7:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-armv7)
docker save -o ~/docker/linux-armv7.tar dockcross/linux-armv7:latest $tagged
- run:
name: linux-armv7 test
command: |
make linux-armv7.test
2017-08-27 05:48:47 +02:00
- save_cache:
key: linux-armv7-assets-{{ .Revision }}
paths: ~/docker/linux-armv7.tar
linux-armv7a:
<<: *build-settings
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
name: linux-armv7a build
no_output_timeout: 1.5h
command: |
docker load -i ~/docker/base.tar
make linux-armv7a
tagged=$(docker images -q -f 'since=dockcross/linux-armv7a:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-armv7a)
docker save -o ~/docker/linux-armv7a.tar dockcross/linux-armv7a:latest $tagged
- run:
name: linux-armv7a test
command: |
make linux-armv7a.test
- save_cache:
key: linux-armv7a-assets-{{ .Revision }}
paths: ~/docker/linux-armv7a.tar
2017-08-27 05:48:47 +02:00
linux-mipsel:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
# Image build currently broken. See #209
#- run:
#name: linux-mipsel build
#no_output_timeout: 1.5h
#command: |
#docker load -i ~/docker/base.tar
#make linux-mipsel
#tagged=$(docker images -q -f 'since=dockcross/linux-mipsel:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-mipsel)
#docker save -o ~/docker/linux-mipsel.tar dockcross/linux-mipsel:latest $tagged
#- run:
#name: linux-mipsel test
#command: |
#make linux-mipsel.test
2017-08-27 05:48:47 +02:00
- save_cache:
key: linux-mipsel-assets-{{ .Revision }}
paths: ~/docker/linux-mipsel.tar
2017-09-15 19:52:37 +02:00
linux-s390x:
<<: *build-settings
2017-09-15 19:52:37 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
name: linux-s390x build
no_output_timeout: 1.5h
command: |
docker load -i ~/docker/base.tar
make linux-s390x
tagged=$(docker images -q -f 'since=dockcross/linux-s390x:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-s390x)
docker save -o ~/docker/linux-s390x.tar dockcross/linux-s390x:latest $tagged
2017-09-15 19:52:37 +02:00
- run:
name: linux-s390x test
command: |
make linux-s390x.test
- save_cache:
key: linux-s390x-assets-{{ .Revision }}
paths: ~/docker/linux-s390x.tar
2017-08-27 05:48:47 +02:00
linux-ppc64le:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
# Image build currently broken. See #209
#- run:
#name: linux-ppc64le build
#no_output_timeout: 1.5h
#command: |
#docker load -i ~/docker/base.tar
#make linux-ppc64le
#tagged=$(docker images -q -f 'since=dockcross/linux-ppc64le:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-ppc64le)
#docker save -o ~/docker/linux-ppc64le.tar dockcross/linux-ppc64le:latest $tagged
#- run:
#name: linux-ppc64le test
#command: |
#make linux-ppc64le.test
2017-08-27 05:48:47 +02:00
- save_cache:
key: linux-ppc64le-assets-{{ .Revision }}
paths: ~/docker/linux-ppc64le.tar
linux-x64:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
name: linux-x64 build
no_output_timeout: 1.5h
command: |
docker load -i ~/docker/base.tar
make linux-x64
tagged=$(docker images -q -f 'since=dockcross/linux-x64:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-x64)
docker save -o ~/docker/linux-x64.tar dockcross/linux-x64:latest $tagged
2017-08-27 05:48:47 +02:00
- run:
name: linux-x64 test
command: |
make linux-x64.test
- save_cache:
key: linux-x64-assets-{{ .Revision }}
paths: ~/docker/linux-x64.tar
linux-x86:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
name: linux-x86 build
no_output_timeout: 1.5h
command: |
docker load -i ~/docker/base.tar
make linux-x86
tagged=$(docker images -q -f 'since=dockcross/linux-x86:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-x86)
docker save -o ~/docker/linux-x86.tar dockcross/linux-x86:latest $tagged
2017-08-27 05:48:47 +02:00
- run:
name: linux-x86 test
command: |
make linux-x86.test
- save_cache:
key: linux-x86-assets-{{ .Revision }}
paths: ~/docker/linux-x86.tar
manylinux-x64:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
name: manylinux-x64 build
no_output_timeout: 1.5h
command: |
docker load -i ~/docker/base.tar
make manylinux-x64
tagged=$(docker images -q -f 'since=dockcross/manylinux-x64:latest' --format '{{.Repository}}:{{.Tag}}' | grep manylinux-x64)
docker save -o ~/docker/manylinux-x64.tar dockcross/manylinux-x64:latest $tagged
2017-08-27 05:48:47 +02:00
- run:
name: manylinux-x64 test
command: |
make manylinux-x64.test
- save_cache:
key: manylinux-x64-assets-{{ .Revision }}
paths: ~/docker/manylinux-x64.tar
manylinux-x86:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
name: manylinux-x86 build
no_output_timeout: 1.5h
command: |
docker load -i ~/docker/base.tar
make manylinux-x86
tagged=$(docker images -q -f 'since=dockcross/manylinux-x86:latest' --format '{{.Repository}}:{{.Tag}}' | grep manylinux-x86)
docker save -o ~/docker/manylinux-x86.tar dockcross/manylinux-x86:latest $tagged
2017-08-27 05:48:47 +02:00
- run:
name: manylinux-x86 test
command: |
make manylinux-x86.test
- save_cache:
key: manylinux-x86-assets-{{ .Revision }}
paths: ~/docker/manylinux-x86.tar
2019-02-28 10:17:32 +01:00
windows-static-x64:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
no_output_timeout: 1.5h
2019-02-28 10:17:32 +01:00
name: windows-static-x64 build
2017-08-27 05:48:47 +02:00
command: |
docker load -i ~/docker/base.tar
2019-02-28 10:17:32 +01:00
make windows-static-x64
tagged=$(docker images -q -f 'since=dockcross/windows-static-x64:latest' --format '{{.Repository}}:{{.Tag}}' | grep windows-static-x64)
docker save -o ~/docker/windows-static-x64.tar dockcross/windows-static-x64:latest $tagged
2017-08-27 05:48:47 +02:00
- run:
2019-02-28 10:17:32 +01:00
name: windows-static-x64 test
2017-08-27 05:48:47 +02:00
command: |
2019-02-28 10:17:32 +01:00
make windows-static-x64.test
2017-08-27 05:48:47 +02:00
- save_cache:
2019-02-28 10:17:32 +01:00
key: windows-static-x64-assets-{{ .Revision }}
paths: ~/docker/windows-static-x64.tar
windows-static-x64-posix:
<<: *build-settings
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
no_output_timeout: 1.5h
2019-02-28 10:17:32 +01:00
name: windows-static-x64-posix build
command: |
docker load -i ~/docker/base.tar
2019-02-28 10:17:32 +01:00
make windows-static-x64-posix
tagged=$(docker images -q -f 'since=dockcross/windows-static-x64-posix:latest' --format '{{.Repository}}:{{.Tag}}' | grep windows-static-x64-posix)
docker save -o ~/docker/windows-static-x64-posix.tar dockcross/windows-static-x64-posix:latest $tagged
- run:
2019-02-28 10:17:32 +01:00
name: windows-static-x64-posix test
command: |
2019-02-28 10:17:32 +01:00
make windows-static-x64-posix.test
- save_cache:
2019-02-28 10:17:32 +01:00
key: windows-static-x64-posix-assets-{{ .Revision }}
paths: ~/docker/windows-static-x64-posix.tar
windows-static-x86:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
no_output_timeout: 1.5h
2019-02-28 10:17:32 +01:00
name: windows-static-x86 build
2017-08-27 05:48:47 +02:00
command: |
docker load -i ~/docker/base.tar
2019-02-28 10:17:32 +01:00
make windows-static-x86
tagged=$(docker images -q -f 'since=dockcross/windows-static-x86:latest' --format '{{.Repository}}:{{.Tag}}' | grep windows-static-x86)
docker save -o ~/docker/windows-static-x86.tar dockcross/windows-static-x86:latest $tagged
2017-08-27 05:48:47 +02:00
- run:
2019-02-28 10:17:32 +01:00
name: windows-static-x86 test
2017-08-27 05:48:47 +02:00
command: |
2019-02-28 10:17:32 +01:00
make windows-static-x86.test
2017-08-27 05:48:47 +02:00
- save_cache:
2019-02-28 10:17:32 +01:00
key: windows-static-x86-assets-{{ .Revision }}
paths: ~/docker/windows-static-x86.tar
windows-shared-x64:
<<: *build-settings
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
no_output_timeout: 1.5h
name: windows-shared-x64 build
command: |
docker load -i ~/docker/base.tar
make windows-shared-x64
tagged=$(docker images -q -f 'since=dockcross/windows-shared-x64:latest' --format '{{.Repository}}:{{.Tag}}' | grep windows-shared-x64)
docker save -o ~/docker/windows-shared-x64.tar dockcross/windows-shared-x64:latest $tagged
- run:
name: windows-shared-x64 test
command: |
make windows-shared-x64.test
- save_cache:
key: windows-shared-x64-assets-{{ .Revision }}
paths: ~/docker/windows-shared-x64.tar
windows-shared-x64-posix:
<<: *build-settings
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
no_output_timeout: 1.5h
name: windows-shared-x64-posix build
command: |
docker load -i ~/docker/base.tar
make windows-shared-x64-posix
tagged=$(docker images -q -f 'since=dockcross/windows-shared-x64-posix:latest' --format '{{.Repository}}:{{.Tag}}' | grep windows-shared-x64-posix)
docker save -o ~/docker/windows-shared-x64-posix.tar dockcross/windows-shared-x64-posix:latest $tagged
- run:
name: windows-shared-x64-posix test
command: |
make windows-shared-x64-posix.test
- save_cache:
key: windows-shared-x64-posix-assets-{{ .Revision }}
paths: ~/docker/windows-shared-x64-posix.tar
windows-shared-x86:
<<: *build-settings
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- run:
no_output_timeout: 1.5h
name: windows-shared-x86 build
command: |
docker load -i ~/docker/base.tar
make windows-shared-x86
tagged=$(docker images -q -f 'since=dockcross/windows-shared-x86:latest' --format '{{.Repository}}:{{.Tag}}' | grep windows-shared-x86)
docker save -o ~/docker/windows-shared-x86.tar dockcross/windows-shared-x86:latest $tagged
- run:
name: windows-shared-x86 test
command: |
make windows-shared-x86.test
- save_cache:
key: windows-shared-x86-assets-{{ .Revision }}
paths: ~/docker/windows-shared-x86.tar
2017-08-27 05:48:47 +02:00
deploy:
<<: *build-settings
2017-08-27 05:48:47 +02:00
steps:
- restore_cache:
key: base-assets-{{ .Revision }}
- deploy:
name: Deploy base
command: |
docker load -i ~/docker/base.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/base:latest
fi
- restore_cache:
key: android-arm-assets-{{ .Revision }}
- deploy:
name: Deploy android-arm
command: |
docker load -i ~/docker/android-arm.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/android-arm:latest
tagged=$(docker images -q -f 'since=dockcross/android-arm:latest' --format '{{.Repository}}:{{.Tag}}' | grep android-arm)
docker push $tagged
2017-08-27 05:48:47 +02:00
fi
2018-03-19 13:55:14 +01:00
- restore_cache:
key: android-arm64-assets-{{ .Revision }}
- deploy:
name: Deploy android-arm64
command: |
docker load -i ~/docker/android-arm64.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/android-arm64:latest
tagged=$(docker images -q -f 'since=dockcross/android-arm64:latest' --format '{{.Repository}}:{{.Tag}}' | grep android-arm64)
docker push $tagged
2018-03-19 13:55:14 +01:00
fi
2017-08-27 05:48:47 +02:00
- restore_cache:
key: web-wasm-assets-{{ .Revision }}
2017-08-27 05:48:47 +02:00
- deploy:
name: Deploy web-wasm
2017-08-27 05:48:47 +02:00
command: |
docker load -i ~/docker/web-wasm.tar
2017-08-27 05:48:47 +02:00
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/web-wasm:latest
tagged=$(docker images -q -f 'since=dockcross/web-wasm:latest' --format '{{.Repository}}:{{.Tag}}' | grep web-wasm)
docker push $tagged
2017-08-27 05:48:47 +02:00
fi
- restore_cache:
key: linux-arm64-assets-{{ .Revision }}
- deploy:
name: Deploy linux-arm64
command: |
docker load -i ~/docker/linux-arm64.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/linux-arm64:latest
tagged=$(docker images -q -f 'since=dockcross/linux-arm64:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-arm64)
docker push $tagged
fi
- restore_cache:
key: linux-armv5-assets-{{ .Revision }}
- deploy:
name: Deploy linux-armv5
command: |
docker load -i ~/docker/linux-armv5.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/linux-armv5:latest
tagged=$(docker images -q -f 'since=dockcross/linux-armv5:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-armv5)
docker push $tagged
fi
2017-08-27 05:48:47 +02:00
- restore_cache:
key: linux-armv6-assets-{{ .Revision }}
- deploy:
name: Deploy linux-armv6
command: |
docker load -i ~/docker/linux-armv6.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/linux-armv6:latest
tagged=$(docker images -q -f 'since=dockcross/linux-armv6:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-armv6)
docker push $tagged
2017-08-27 05:48:47 +02:00
fi
- restore_cache:
key: linux-armv7-assets-{{ .Revision }}
- deploy:
name: Deploy linux-armv7
command: |
docker load -i ~/docker/linux-armv7.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/linux-armv7:latest
tagged=$(docker images -q -f 'since=dockcross/linux-armv7:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-armv7)
docker push $tagged
fi
- restore_cache:
key: linux-armv7a-assets-{{ .Revision }}
- deploy:
name: Deploy linux-armv7a
command: |
docker load -i ~/docker/linux-armv7a.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/linux-armv7a:latest
tagged=$(docker images -q -f 'since=dockcross/linux-armv7a:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-armv7a)
docker push $tagged
fi
# Image build currently broken. See #209
#- restore_cache:
#key: linux-mipsel-assets-{{ .Revision }}
#- deploy:
#name: Deploy linux-mipsel
#command: |
#docker load -i ~/docker/linux-mipsel.tar
#if [ "${CIRCLE_BRANCH}" == "master" ]; then
#docker login -u $DOCKER_USER -p $DOCKER_PASS
#docker push dockcross/linux-mipsel:latest
#tagged=$(docker images -q -f 'since=dockcross/linux-mipsel:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-mipsel)
#docker push $tagged
#fi
2017-09-15 19:52:37 +02:00
- restore_cache:
key: linux-s390x-assets-{{ .Revision }}
- deploy:
name: Deploy linux-s390x
command: |
docker load -i ~/docker/linux-s390x.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/linux-s390x:latest
tagged=$(docker images -q -f 'since=dockcross/linux-s390x:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-s390x)
docker push $tagged
2017-09-15 19:52:37 +02:00
fi
# Image build currently broken. See #209
#- restore_cache:
#key: linux-ppc64le-assets-{{ .Revision }}
#- deploy:
#name: Deploy linux-ppc64le
#command: |
#docker load -i ~/docker/linux-ppc64le.tar
#if [ "${CIRCLE_BRANCH}" == "master" ]; then
#docker login -u $DOCKER_USER -p $DOCKER_PASS
#docker push dockcross/linux-ppc64le:latest
#tagged=$(docker images -q -f 'since=dockcross/linux-ppc64le:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-ppc64le)
#docker push $tagged
#fi
2017-08-27 05:48:47 +02:00
- restore_cache:
key: linux-x64-assets-{{ .Revision }}
- deploy:
name: Deploy linux-x64
command: |
docker load -i ~/docker/linux-x64.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/linux-x64:latest
tagged=$(docker images -q -f 'since=dockcross/linux-x64:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-x64)
docker push $tagged
2017-08-27 05:48:47 +02:00
fi
- restore_cache:
key: linux-x86-assets-{{ .Revision }}
- deploy:
name: Deploy linux-x86
command: |
docker load -i ~/docker/linux-x86.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/linux-x86:latest
tagged=$(docker images -q -f 'since=dockcross/linux-x86:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-x86)
docker push $tagged
2017-08-27 05:48:47 +02:00
fi
- restore_cache:
key: manylinux-x64-assets-{{ .Revision }}
- deploy:
name: Deploy manylinux-x64
command: |
docker load -i ~/docker/manylinux-x64.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/manylinux-x64:latest
tagged=$(docker images -q -f 'since=dockcross/manylinux-x64:latest' --format '{{.Repository}}:{{.Tag}}' | grep manylinux-x64)
docker push $tagged
2017-08-27 05:48:47 +02:00
fi
- restore_cache:
key: manylinux-x86-assets-{{ .Revision }}
- deploy:
name: Deploy manylinux-x86
command: |
docker load -i ~/docker/manylinux-x86.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/manylinux-x86:latest
tagged=$(docker images -q -f 'since=dockcross/manylinux-x86:latest' --format '{{.Repository}}:{{.Tag}}' | grep manylinux-x86)
docker push $tagged
2017-08-27 05:48:47 +02:00
fi
- restore_cache:
2019-02-28 10:17:32 +01:00
key: windows-static-x64-assets-{{ .Revision }}
- deploy:
name: Deploy windows-static-x64
command: |
docker load -i ~/docker/windows-static-x64.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/windows-static-x64:latest
tagged=$(docker images -q -f 'since=dockcross/windows-static-x64:latest' --format '{{.Repository}}:{{.Tag}}' | grep windows-static-x64)
docker push $tagged
fi
- restore_cache:
key: windows-static-x64-posix-assets-{{ .Revision }}
- deploy:
name: Deploy windows-static-x64-posix
command: |
docker load -i ~/docker/windows-static-x64-posix.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/windows-static-x64-posix:latest
tagged=$(docker images -q -f 'since=dockcross/windows-static-x64-posix:latest' --format '{{.Repository}}:{{.Tag}}' | grep windows-static-x64-posix)
docker push $tagged
fi
- restore_cache:
key: windows-static-x86-assets-{{ .Revision }}
2017-08-27 05:48:47 +02:00
- deploy:
2019-02-28 10:17:32 +01:00
name: Deploy windows-static-x86
2017-08-27 05:48:47 +02:00
command: |
2019-02-28 10:17:32 +01:00
docker load -i ~/docker/windows-static-x86.tar
2017-08-27 05:48:47 +02:00
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
2019-02-28 10:17:32 +01:00
docker push dockcross/windows-static-x86:latest
tagged=$(docker images -q -f 'since=dockcross/windows-static-x86:latest' --format '{{.Repository}}:{{.Tag}}' | grep windows-static-x86)
docker push $tagged
2017-08-27 05:48:47 +02:00
fi
- restore_cache:
2019-02-28 10:17:32 +01:00
key: windows-shared-x64-assets-{{ .Revision }}
- deploy:
2019-02-28 10:17:32 +01:00
name: Deploy windows-shared-x64
command: |
2019-02-28 10:17:32 +01:00
docker load -i ~/docker/windows-shared-x64.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
2019-02-28 10:17:32 +01:00
docker push dockcross/windows-shared-x64:latest
tagged=$(docker images -q -f 'since=dockcross/windows-shared-x64:latest' --format '{{.Repository}}:{{.Tag}}' | grep windows-shared-x64)
docker push $tagged
fi
2017-08-27 05:48:47 +02:00
- restore_cache:
2019-02-28 10:17:32 +01:00
key: windows-shared-x64-posix-assets-{{ .Revision }}
2017-08-27 05:48:47 +02:00
- deploy:
2019-02-28 10:17:32 +01:00
name: Deploy windows-shared-x64-posix
2017-08-27 05:48:47 +02:00
command: |
2019-02-28 10:17:32 +01:00
docker load -i ~/docker/windows-shared-x64-posix.tar
2017-08-27 05:48:47 +02:00
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
2019-02-28 10:17:32 +01:00
docker push dockcross/windows-shared-x64-posix:latest
tagged=$(docker images -q -f 'since=dockcross/windows-shared-x64-posix:latest' --format '{{.Repository}}:{{.Tag}}' | grep windows-shared-x64-posix)
docker push $tagged
fi
- restore_cache:
key: windows-shared-x86-assets-{{ .Revision }}
- deploy:
name: Deploy windows-shared-x86
command: |
docker load -i ~/docker/windows-shared-x86.tar
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push dockcross/windows-shared-x86:latest
tagged=$(docker images -q -f 'since=dockcross/windows-shared-x86:latest' --format '{{.Repository}}:{{.Tag}}' | grep windows-shared-x86)
docker push $tagged
2017-08-27 05:48:47 +02:00
fi
workflows:
version: 2
build-test-deploy:
jobs:
- base
- android-arm:
requires:
- base
2018-03-19 13:55:14 +01:00
- android-arm64:
requires:
- base
- web-wasm:
2017-08-27 05:48:47 +02:00
requires:
- base
- linux-arm64:
requires:
- base
- linux-armv5:
requires:
- base
2017-08-27 05:48:47 +02:00
- linux-armv6:
requires:
- base
- linux-armv7:
requires:
- base
- linux-armv7a:
requires:
- base
# Image build currently broken. See #209
#- linux-mipsel:
#requires:
#- base
2017-09-15 19:52:37 +02:00
- linux-s390x:
requires:
- base
# Image build currently broken. See #209
#- linux-ppc64le:
#requires:
#- base
2017-08-27 05:48:47 +02:00
- linux-x64:
requires:
- base
- linux-x86:
requires:
- base
- manylinux-x64:
requires:
- base
- manylinux-x86:
requires:
- base
2019-02-28 10:17:32 +01:00
- windows-static-x64:
requires:
- base
- windows-static-x64-posix:
requires:
- base
- windows-static-x86:
requires:
- base
- windows-shared-x64:
2017-08-27 05:48:47 +02:00
requires:
- base
2019-02-28 10:17:32 +01:00
- windows-shared-x64-posix:
requires:
- base
2019-02-28 10:17:32 +01:00
- windows-shared-x86:
2017-08-27 05:48:47 +02:00
requires:
- base
- deploy:
requires:
- base
- android-arm
2018-03-19 13:55:14 +01:00
- android-arm64
- web-wasm
- linux-arm64
- linux-armv5
2017-08-27 05:48:47 +02:00
- linux-armv6
- linux-armv7
- linux-armv7a
#- linux-mipsel
2017-09-15 19:52:37 +02:00
- linux-s390x
# Image build currently broken. See #209
#- linux-ppc64le
2017-08-27 05:48:47 +02:00
- linux-x64
- linux-x86
- manylinux-x64
- manylinux-x86
2019-02-28 10:17:32 +01:00
- windows-static-x64
- windows-static-x64-posix
- windows-static-x86
- windows-shared-x64
- windows-shared-x64-posix
- windows-shared-x86