Commit 30f0193f authored by James T. Lee's avatar James T. Lee
Browse files

Build cortex-a72-a53-crypto-workstation and cortex-a8-server

parent d228fa90
Pipeline #436 passed with stage
in 1119 minutes and 38 seconds
--- ---
default: .template: &template
image: '${CI_REGISTRY}/nest/tools/buildah:${CI_HOST_CPU}' image: '${CI_REGISTRY}/nest/tools/buildah:${CI_HOST_CPU}'
before_script:
- 'buildah login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" "$CI_REGISTRY"'
.'Build haswell-server':
stage: 'build' stage: 'build'
tags: ['nest'] tags: ['nest']
variables: script:
CPU: 'haswell'
ROLE: 'server'
QEMU_ARCH: 'x86_64'
script: &script
- 'mkdir debug' - 'mkdir debug'
- 'buildah login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" "$CI_REGISTRY"'
- 'buildah bud --security-opt seccomp=unconfined - 'buildah bud --security-opt seccomp=unconfined
--ulimit nofile=1048576 --ulimit nofile=1048576
--build-arg STAGE0_TAG="$CPU" --build-arg STAGE0_TAG="$CPU"
...@@ -29,20 +22,37 @@ default: ...@@ -29,20 +22,37 @@ default:
- 'buildah push "${CI_REGISTRY_IMAGE}:${CPU}-${ROLE}"' - 'buildah push "${CI_REGISTRY_IMAGE}:${CPU}-${ROLE}"'
- 'buildah push "${CI_REGISTRY_IMAGE}/debug:${CPU}-${ROLE}"' - 'buildah push "${CI_REGISTRY_IMAGE}/debug:${CPU}-${ROLE}"'
.'Build haswell-workstation': 'Build haswell-server':
stage: 'build' <<: *template
tags: ['nest'] variables:
CPU: 'haswell'
ROLE: 'server'
QEMU_ARCH: 'x86_64'
'Build haswell-workstation':
<<: *template
variables: variables:
CPU: 'haswell' CPU: 'haswell'
ROLE: 'workstation' ROLE: 'workstation'
QEMU_ARCH: 'x86_64' QEMU_ARCH: 'x86_64'
script: *script
'Build cortex-a72-a53-crypto-workstation':
<<: *template
variables:
CPU: 'cortex-a72-a53-crypto'
ROLE: 'workstation'
QEMU_ARCH: 'aarch64'
'Build cortex-a72-workstation': 'Build cortex-a72-workstation':
stage: 'build' <<: *template
tags: ['nest']
variables: variables:
CPU: 'cortex-a72' CPU: 'cortex-a72'
ROLE: 'workstation' ROLE: 'workstation'
QEMU_ARCH: 'aarch64' QEMU_ARCH: 'aarch64'
script: *script
'Build cortex-a8-server':
<<: *template
variables:
CPU: 'cortex-a8'
ROLE: 'server'
QEMU_ARCH: 'arm'
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment