Welcome to the Pipelines Project! This repository provides a comprehensive Software Development Life Cycle (SDLC) pipeline to help software engineers achieve a quick, free, and seamless development process. It includes pipelines for each application within this development group, featuring tools for Static Application Security Testing (SAST), Software Composition Analysis (SCA), Software Supply Chain Assurance (SSCA), and testing for various programming languages.
To get started with GitHub, use the following workflow configuration:
name: 'default'
on:
push:
branches:
- 'main'
tags:
- '*'
pull_request:
branches:
- 'main'
workflow_dispatch:
permissions:
checks: 'write' # code_check-style_golangci_lint
contents: 'write' # delivery-release
jobs:
default:
uses: 'rios0rios0/pipelines/.github/workflows/go-docker.yaml@main'
Example for GoLang:
To get started with GitLab, include the following configuration:
include:
- remote: 'https://raw.githubusercontent.com/rios0rios0/pipelines/main/gitlab/golang/go-docker.yaml'
.delivery:
script:
- docker build -t "$REGISTRY_PATH$IMAGE_SUFFIX:$TAG" -f .ci/40-delivery/Dockerfile .
cache:
key: 'test:all'
paths: !reference [ .go, cache, paths ]
policy: 'pull'
Example for Java:
To get started with Azure DevOps, use the following pipeline configuration:
trigger:
branches:
include:
- 'main'
tags:
include:
- '*'
pool:
vmImage: 'ubuntu-latest'
variables:
- ${{ if startsWith(variables['Build.SourceBranch'], 'refs/tags/') }}:
- group: 'your-tag-group-for-production'
- ${{ else }}:
- group: 'your-tag-group-for-development'
resources:
repositories:
- repository: 'pipelines'
type: 'github'
name: 'rios0rios0/pipelines'
endpoint: 'SVC_GITHUB'
stages:
- template: 'azure-devops/golang/go-arm.yaml@pipelines'
Example for GoLang:
To clone this repository and use it in your projects, run the following command:
curl -sSL https://raw.githubusercontent.com/rios0rios0/pipelines/main/clone.sh | bash
git clone [email protected]:rios0rios0/pipelines.git ~/pipelines
ln -s ~/pipelines/global/scripts/golangci-lint/.golangci.yml ~/.golangci.yml
or
curl -sSL https://raw.githubusercontent.com/rios0rios0/pipelines/main/clone.sh | bash
export SCRIPTS_DIR=/home/rios0rios0/Development/github.com/rios0rios0/pipelines
$SCRIPTS_DIR/global/scripts/golangci-lint/run.sh # or any other script
In the dev branch of pipelines, you can use the following command to replace all of the references to the main
branch:
export BRANCH=fix/golang
find . -type f -name "*.yaml" -exec sed -i "/^[[:space:]]*-[[:space:]]\+remote:.*main/s/main/$BRANCH/g" {} +
After you push these changes to the dev/testing branch, update the references in your repository to point to the new branch:
include:
- remote: 'https://raw.githubusercontent.com/rios0rios0/pipelines/$BRANCH/gitlab/golang/go-debian.yaml'
We welcome contributions! Please read our Contributing Guidelines for more information.
This project is licensed under the MIT License. See the LICENSE file for details.