blob: a531f26c7814e69c917e28766af089d0b394f233 [file] [log] [blame]
---
# ============LICENSE_START=======================================================
# Copyright (C) 2020 Nordix Foundation.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
# ============LICENSE_END=========================================================
- job-template:
name: '{project-name}-build-periodic-{distro}-{stream}'
node: 'eiffel-build-{distro}'
disabled: false
concurrent: false
properties:
- logrotate
parameters:
- project-parameters:
project: '{project}'
branch: '{branch}'
- string:
name: GIT_BASE_HTTPS
default: https://github.com/eiffel-community
description: HTTPS URL of Project Repo on GitHub to clone repo.
- string:
name: GIT_BASE_SSH
default: git@github.com:eiffel-community
description: SSH URL of Project Repo on GitHub to clone repo.
- string:
name: IMAGE_DOCKERFILE
default: '{image-dockerfile}'
description: Dockerfile to use for building the container image
- string:
name: IMAGE_NAME
default: '{image-name}'
description: Name of the container image
- string:
name: IMAGE_TAG
default: '{image-tag}'
description: Tag to apply to the container image
- choice:
name: HARBOR_EIFFEL_PROJECT
choices:
- eiffel
- eiffel-playground
description: Project to push container images to. Default is eiffel. eiffel-playground is for development purposes.
- choice:
name: PODMAN_LOG_LEVEL
choices:
- error
- debug
- info
- warn
- fatal
- panic
description: Podman log level to use. Default is error.
- string:
name: NORDIX_REGISTRY
default: 'registry.nordix.org'
description: Nordix container image registry.
scm:
- git:
url: 'https://github.com/eiffel-community/{project-git-repo}.git'
branches:
- '*/{branch}'
refspec: ''
timeout: 15
per-build-tag: false
skip-tag: true
shallow-clone: false
use-author: false
ignore-notify: false
wipe-workspace: true
prune: false
clean:
after: false
before: false
choosing-strategy: 'default'
basedir: '$WORKSPACE'
triggers:
- pollscm:
cron: "H 0,8,16 * * *"
wrappers:
- build-timeout:
timeout: 10
- nordixinfra-harbor-creds-wrapper
- mask-passwords
- openstack:
single-use: True
builders:
- '{project-build-macro}'
# vim: set ts=2 sw=2 expandtab: