mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-06-11 21:49:24 +02:00
add support for armv5 using musl as libc version
This commit is contained in:

committed by
Jean-Christophe Fillion-Robin

parent
f5c380f467
commit
b671432c6f
@ -124,6 +124,26 @@ jobs:
|
||||
- save_cache:
|
||||
key: linux-armv5-assets-{{ .Revision }}
|
||||
paths: ~/docker/linux-armv5.tar
|
||||
linux-armv5-musl:
|
||||
<<: *build-settings
|
||||
steps:
|
||||
- restore_cache:
|
||||
key: base-assets-{{ .Revision }}
|
||||
- run:
|
||||
name: linux-armv5-musl build
|
||||
no_output_timeout: 1.5h
|
||||
command: |
|
||||
docker load -i ~/docker/base.tar
|
||||
make linux-armv5-musl
|
||||
tagged=$(docker images -q -f 'since=dockcross/linux-armv5-musl:latest' --format '{{.Repository}}:{{.Tag}}' | grep linux-armv5-musl)
|
||||
docker save -o ~/docker/linux-armv5-musl.tar dockcross/linux-armv5-musl:latest $tagged
|
||||
- run:
|
||||
name: linux-armv5-musl test
|
||||
command: |
|
||||
make linux-armv5-musl.test
|
||||
- save_cache:
|
||||
key: linux-armv5-musl-assets-{{ .Revision }}
|
||||
paths: ~/docker/linux-armv5-musl.tar
|
||||
linux-armv6:
|
||||
<<: *build-settings
|
||||
steps:
|
||||
|
Reference in New Issue
Block a user