added github workflows
This commit is contained in:
parent
469957403c
commit
5e516dd3fb
140
.github/workflows/mobileshoppingagg.yml
vendored
Normal file
140
.github/workflows/mobileshoppingagg.yml
vendored
Normal file
@ -0,0 +1,140 @@
|
|||||||
|
name: mobileshoppingagg
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
|
||||||
|
paths:
|
||||||
|
- src/ApiGateways/Mobile.Bff.Shopping/aggregator/*
|
||||||
|
- .github/workflows/mobileshoppingagg.yml
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
env:
|
||||||
|
SERVICE: mobileshoppingagg
|
||||||
|
IMAGE: mobileshoppingagg
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
BuildContainersForPR_Linux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildContainersForPR_Windows:
|
||||||
|
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildLinux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Enable experimental features for the Docker daemon and CLI
|
||||||
|
run: |
|
||||||
|
echo $'{\n "experimental": true\n}' | sudo tee /etc/docker/daemon.json
|
||||||
|
mkdir -p ~/.docker
|
||||||
|
echo $'{\n "experimental": "enabled"\n}' | sudo tee ~/.docker/config.json
|
||||||
|
sudo service docker restart
|
||||||
|
docker version -f '{{.Client.Experimental}}'
|
||||||
|
docker version -f '{{.Server.Experimental}}'
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
registry: ${{ secrets.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
run: |
|
||||||
|
currentbranch=$(echo ${GITHUB_REF##*/})
|
||||||
|
echo "running on $currentbranch"
|
||||||
|
echo "BRANCH=$currentbranch" >> $GITHUB_ENV
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose push ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Create multiarch manifest
|
||||||
|
run: |
|
||||||
|
docker --config ~/.docker manifest create ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }} ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:linux-${{ env.BRANCH }}
|
||||||
|
docker --config ~/.docker manifest push ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }}
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
BuildWindows:
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: azure/docker-login@v1
|
||||||
|
with:
|
||||||
|
login-server: ${{ env.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
shell: pwsh
|
||||||
|
run: echo "BRANCH=$($env:GITHUB_REF.replace('refs/heads/', ''))" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: docker-compose push ${{ env.SERVICE }}'
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
141
.github/workflows/ordering-backgroundtasks.yml
vendored
Normal file
141
.github/workflows/ordering-backgroundtasks.yml
vendored
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
name: ordering-backgroundtasks
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
|
||||||
|
paths:
|
||||||
|
- src/BuildingBlocks/*
|
||||||
|
- src/Services/Ordering/*
|
||||||
|
- .github/workflows/ordering-backgroundtasks.yml
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
env:
|
||||||
|
SERVICE: ordering-backgroundtasks
|
||||||
|
IMAGE: ordering.backgroundtasks
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
BuildContainersForPR_Linux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildContainersForPR_Windows:
|
||||||
|
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildLinux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Enable experimental features for the Docker daemon and CLI
|
||||||
|
run: |
|
||||||
|
echo $'{\n "experimental": true\n}' | sudo tee /etc/docker/daemon.json
|
||||||
|
mkdir -p ~/.docker
|
||||||
|
echo $'{\n "experimental": "enabled"\n}' | sudo tee ~/.docker/config.json
|
||||||
|
sudo service docker restart
|
||||||
|
docker version -f '{{.Client.Experimental}}'
|
||||||
|
docker version -f '{{.Server.Experimental}}'
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
registry: ${{ secrets.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
run: |
|
||||||
|
currentbranch=$(echo ${GITHUB_REF##*/})
|
||||||
|
echo "running on $currentbranch"
|
||||||
|
echo "BRANCH=$currentbranch" >> $GITHUB_ENV
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose push ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Create multiarch manifest
|
||||||
|
run: |
|
||||||
|
docker --config ~/.docker manifest create ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }} ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:linux-${{ env.BRANCH }}
|
||||||
|
docker --config ~/.docker manifest push ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }}
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
BuildWindows:
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: azure/docker-login@v1
|
||||||
|
with:
|
||||||
|
login-server: ${{ env.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
shell: pwsh
|
||||||
|
run: echo "BRANCH=$($env:GITHUB_REF.replace('refs/heads/', ''))" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: docker-compose push ${{ env.SERVICE }}'
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
141
.github/workflows/ordering-signalrhub.yml
vendored
Normal file
141
.github/workflows/ordering-signalrhub.yml
vendored
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
name: ordering-signalrhub
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
|
||||||
|
paths:
|
||||||
|
- src/BuildingBlocks/*
|
||||||
|
- src/Services/Ordering/*
|
||||||
|
- .github/workflows/ordering-signalrhub.yml
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
env:
|
||||||
|
SERVICE: ordering-signalrhub
|
||||||
|
IMAGE: ordering.signalrhub
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
BuildContainersForPR_Linux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildContainersForPR_Windows:
|
||||||
|
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildLinux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Enable experimental features for the Docker daemon and CLI
|
||||||
|
run: |
|
||||||
|
echo $'{\n "experimental": true\n}' | sudo tee /etc/docker/daemon.json
|
||||||
|
mkdir -p ~/.docker
|
||||||
|
echo $'{\n "experimental": "enabled"\n}' | sudo tee ~/.docker/config.json
|
||||||
|
sudo service docker restart
|
||||||
|
docker version -f '{{.Client.Experimental}}'
|
||||||
|
docker version -f '{{.Server.Experimental}}'
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
registry: ${{ secrets.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
run: |
|
||||||
|
currentbranch=$(echo ${GITHUB_REF##*/})
|
||||||
|
echo "running on $currentbranch"
|
||||||
|
echo "BRANCH=$currentbranch" >> $GITHUB_ENV
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose push ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Create multiarch manifest
|
||||||
|
run: |
|
||||||
|
docker --config ~/.docker manifest create ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }} ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:linux-${{ env.BRANCH }}
|
||||||
|
docker --config ~/.docker manifest push ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }}
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
BuildWindows:
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: azure/docker-login@v1
|
||||||
|
with:
|
||||||
|
login-server: ${{ env.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
shell: pwsh
|
||||||
|
run: echo "BRANCH=$($env:GITHUB_REF.replace('refs/heads/', ''))" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: docker-compose push ${{ env.SERVICE }}'
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
141
.github/workflows/payment-api.yml
vendored
Normal file
141
.github/workflows/payment-api.yml
vendored
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
name: payment-api
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
|
||||||
|
paths:
|
||||||
|
- src/BuildingBlocks/*
|
||||||
|
- src/Services/Payment/*
|
||||||
|
- .github/workflows/payment-api.yml
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
env:
|
||||||
|
SERVICE: payment-api
|
||||||
|
IMAGE: payment.api
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
BuildContainersForPR_Linux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildContainersForPR_Windows:
|
||||||
|
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildLinux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Enable experimental features for the Docker daemon and CLI
|
||||||
|
run: |
|
||||||
|
echo $'{\n "experimental": true\n}' | sudo tee /etc/docker/daemon.json
|
||||||
|
mkdir -p ~/.docker
|
||||||
|
echo $'{\n "experimental": "enabled"\n}' | sudo tee ~/.docker/config.json
|
||||||
|
sudo service docker restart
|
||||||
|
docker version -f '{{.Client.Experimental}}'
|
||||||
|
docker version -f '{{.Server.Experimental}}'
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
registry: ${{ secrets.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
run: |
|
||||||
|
currentbranch=$(echo ${GITHUB_REF##*/})
|
||||||
|
echo "running on $currentbranch"
|
||||||
|
echo "BRANCH=$currentbranch" >> $GITHUB_ENV
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose push ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Create multiarch manifest
|
||||||
|
run: |
|
||||||
|
docker --config ~/.docker manifest create ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }} ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:linux-${{ env.BRANCH }}
|
||||||
|
docker --config ~/.docker manifest push ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }}
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
BuildWindows:
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: azure/docker-login@v1
|
||||||
|
with:
|
||||||
|
login-server: ${{ env.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
shell: pwsh
|
||||||
|
run: echo "BRANCH=$($env:GITHUB_REF.replace('refs/heads/', ''))" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: docker-compose push ${{ env.SERVICE }}'
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
141
.github/workflows/webhooks-api.yml
vendored
Normal file
141
.github/workflows/webhooks-api.yml
vendored
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
name: webhooks-api
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
|
||||||
|
paths:
|
||||||
|
- src/BuildingBlocks/*
|
||||||
|
- src/Services/Webhooks/*
|
||||||
|
- .github/workflows/webhooks-api.yml
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
env:
|
||||||
|
SERVICE: webhooks-api
|
||||||
|
IMAGE: webhooks.api
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
BuildContainersForPR_Linux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildContainersForPR_Windows:
|
||||||
|
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildLinux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Enable experimental features for the Docker daemon and CLI
|
||||||
|
run: |
|
||||||
|
echo $'{\n "experimental": true\n}' | sudo tee /etc/docker/daemon.json
|
||||||
|
mkdir -p ~/.docker
|
||||||
|
echo $'{\n "experimental": "enabled"\n}' | sudo tee ~/.docker/config.json
|
||||||
|
sudo service docker restart
|
||||||
|
docker version -f '{{.Client.Experimental}}'
|
||||||
|
docker version -f '{{.Server.Experimental}}'
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
registry: ${{ secrets.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
run: |
|
||||||
|
currentbranch=$(echo ${GITHUB_REF##*/})
|
||||||
|
echo "running on $currentbranch"
|
||||||
|
echo "BRANCH=$currentbranch" >> $GITHUB_ENV
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose push ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Create multiarch manifest
|
||||||
|
run: |
|
||||||
|
docker --config ~/.docker manifest create ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }} ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:linux-${{ env.BRANCH }}
|
||||||
|
docker --config ~/.docker manifest push ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }}
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
BuildWindows:
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: azure/docker-login@v1
|
||||||
|
with:
|
||||||
|
login-server: ${{ env.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
shell: pwsh
|
||||||
|
run: echo "BRANCH=$($env:GITHUB_REF.replace('refs/heads/', ''))" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: docker-compose push ${{ env.SERVICE }}'
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
141
.github/workflows/webhooks-client.yml
vendored
Normal file
141
.github/workflows/webhooks-client.yml
vendored
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
name: webhooks-client
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
|
||||||
|
paths:
|
||||||
|
- src/BuildingBlocks/*
|
||||||
|
- src/Web/WebhookClient/*
|
||||||
|
- .github/workflows/webhooks-client.yml
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
env:
|
||||||
|
SERVICE: webhooks-client
|
||||||
|
IMAGE: webhooks.client
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
BuildContainersForPR_Linux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildContainersForPR_Windows:
|
||||||
|
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildLinux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Enable experimental features for the Docker daemon and CLI
|
||||||
|
run: |
|
||||||
|
echo $'{\n "experimental": true\n}' | sudo tee /etc/docker/daemon.json
|
||||||
|
mkdir -p ~/.docker
|
||||||
|
echo $'{\n "experimental": "enabled"\n}' | sudo tee ~/.docker/config.json
|
||||||
|
sudo service docker restart
|
||||||
|
docker version -f '{{.Client.Experimental}}'
|
||||||
|
docker version -f '{{.Server.Experimental}}'
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
registry: ${{ secrets.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
run: |
|
||||||
|
currentbranch=$(echo ${GITHUB_REF##*/})
|
||||||
|
echo "running on $currentbranch"
|
||||||
|
echo "BRANCH=$currentbranch" >> $GITHUB_ENV
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose push ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Create multiarch manifest
|
||||||
|
run: |
|
||||||
|
docker --config ~/.docker manifest create ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }} ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:linux-${{ env.BRANCH }}
|
||||||
|
docker --config ~/.docker manifest push ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }}
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
BuildWindows:
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: azure/docker-login@v1
|
||||||
|
with:
|
||||||
|
login-server: ${{ env.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
shell: pwsh
|
||||||
|
run: echo "BRANCH=$($env:GITHUB_REF.replace('refs/heads/', ''))" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: docker-compose push ${{ env.SERVICE }}'
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
141
.github/workflows/webmvc.yml
vendored
Normal file
141
.github/workflows/webmvc.yml
vendored
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
name: webmvc
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
|
||||||
|
paths:
|
||||||
|
- src/BuildingBlocks/*
|
||||||
|
- src/Web/WebMVC/*
|
||||||
|
- .github/workflows/webmvc.yml
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
env:
|
||||||
|
SERVICE: webmvc
|
||||||
|
IMAGE: webmvc
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
BuildContainersForPR_Linux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildContainersForPR_Windows:
|
||||||
|
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildLinux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Enable experimental features for the Docker daemon and CLI
|
||||||
|
run: |
|
||||||
|
echo $'{\n "experimental": true\n}' | sudo tee /etc/docker/daemon.json
|
||||||
|
mkdir -p ~/.docker
|
||||||
|
echo $'{\n "experimental": "enabled"\n}' | sudo tee ~/.docker/config.json
|
||||||
|
sudo service docker restart
|
||||||
|
docker version -f '{{.Client.Experimental}}'
|
||||||
|
docker version -f '{{.Server.Experimental}}'
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
registry: ${{ secrets.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
run: |
|
||||||
|
currentbranch=$(echo ${GITHUB_REF##*/})
|
||||||
|
echo "running on $currentbranch"
|
||||||
|
echo "BRANCH=$currentbranch" >> $GITHUB_ENV
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose push ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Create multiarch manifest
|
||||||
|
run: |
|
||||||
|
docker --config ~/.docker manifest create ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }} ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:linux-${{ env.BRANCH }}
|
||||||
|
docker --config ~/.docker manifest push ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }}
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
BuildWindows:
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: azure/docker-login@v1
|
||||||
|
with:
|
||||||
|
login-server: ${{ env.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
shell: pwsh
|
||||||
|
run: echo "BRANCH=$($env:GITHUB_REF.replace('refs/heads/', ''))" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: docker-compose push ${{ env.SERVICE }}'
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
141
.github/workflows/webspa.yml
vendored
Normal file
141
.github/workflows/webspa.yml
vendored
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
name: webspa
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
|
||||||
|
paths:
|
||||||
|
- src/BuildingBlocks/*
|
||||||
|
- src/Web/WebSPA/*
|
||||||
|
- .github/workflows/webspa.yml
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
env:
|
||||||
|
SERVICE: webspa
|
||||||
|
IMAGE: webspa
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
BuildContainersForPR_Linux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildContainersForPR_Windows:
|
||||||
|
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildLinux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Enable experimental features for the Docker daemon and CLI
|
||||||
|
run: |
|
||||||
|
echo $'{\n "experimental": true\n}' | sudo tee /etc/docker/daemon.json
|
||||||
|
mkdir -p ~/.docker
|
||||||
|
echo $'{\n "experimental": "enabled"\n}' | sudo tee ~/.docker/config.json
|
||||||
|
sudo service docker restart
|
||||||
|
docker version -f '{{.Client.Experimental}}'
|
||||||
|
docker version -f '{{.Server.Experimental}}'
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
registry: ${{ secrets.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
run: |
|
||||||
|
currentbranch=$(echo ${GITHUB_REF##*/})
|
||||||
|
echo "running on $currentbranch"
|
||||||
|
echo "BRANCH=$currentbranch" >> $GITHUB_ENV
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose push ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Create multiarch manifest
|
||||||
|
run: |
|
||||||
|
docker --config ~/.docker manifest create ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }} ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:linux-${{ env.BRANCH }}
|
||||||
|
docker --config ~/.docker manifest push ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }}
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
BuildWindows:
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: azure/docker-login@v1
|
||||||
|
with:
|
||||||
|
login-server: ${{ env.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
shell: pwsh
|
||||||
|
run: echo "BRANCH=$($env:GITHUB_REF.replace('refs/heads/', ''))" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: docker-compose push ${{ env.SERVICE }}'
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
141
.github/workflows/webstatus.yml
vendored
Normal file
141
.github/workflows/webstatus.yml
vendored
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
name: webstatus
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
|
||||||
|
paths:
|
||||||
|
- src/BuildingBlocks/*
|
||||||
|
- src/Web/WebStatus/*
|
||||||
|
- .github/workflows/webstatus.yml
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
env:
|
||||||
|
SERVICE: webstatus
|
||||||
|
IMAGE: webstatus
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
BuildContainersForPR_Linux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildContainersForPR_Windows:
|
||||||
|
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
BuildLinux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Enable experimental features for the Docker daemon and CLI
|
||||||
|
run: |
|
||||||
|
echo $'{\n "experimental": true\n}' | sudo tee /etc/docker/daemon.json
|
||||||
|
mkdir -p ~/.docker
|
||||||
|
echo $'{\n "experimental": "enabled"\n}' | sudo tee ~/.docker/config.json
|
||||||
|
sudo service docker restart
|
||||||
|
docker version -f '{{.Client.Experimental}}'
|
||||||
|
docker version -f '{{.Server.Experimental}}'
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
registry: ${{ secrets.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
run: |
|
||||||
|
currentbranch=$(echo ${GITHUB_REF##*/})
|
||||||
|
echo "running on $currentbranch"
|
||||||
|
echo "BRANCH=$currentbranch" >> $GITHUB_ENV
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: sudo -E docker-compose push ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Create multiarch manifest
|
||||||
|
run: |
|
||||||
|
docker --config ~/.docker manifest create ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }} ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:linux-${{ env.BRANCH }}
|
||||||
|
docker --config ~/.docker manifest push ${{ secrets.REGISTRY_ENDPOINT }}/${{ env.IMAGE }}:${{ env.BRANCH }}
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
BuildWindows:
|
||||||
|
runs-on: windows-2019
|
||||||
|
if: ${{ false }}
|
||||||
|
# if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout Github Action'
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Login to Container Registry
|
||||||
|
uses: azure/docker-login@v1
|
||||||
|
with:
|
||||||
|
login-server: ${{ env.REGISTRY_HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
password: ${{ secrets.PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set branch name as env variable
|
||||||
|
shell: pwsh
|
||||||
|
run: echo "BRANCH=$($env:GITHUB_REF.replace('refs/heads/', ''))" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||||
|
|
||||||
|
- name: Compose build ${{ env.SERVICE }}
|
||||||
|
run: docker-compose build ${{ env.SERVICE }}
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
||||||
|
|
||||||
|
- name: Compose push ${{ env.SERVICE }}
|
||||||
|
run: docker-compose push ${{ env.SERVICE }}'
|
||||||
|
working-directory: ./src
|
||||||
|
shell: pwsh
|
||||||
|
env:
|
||||||
|
TAG: ${{ env.BRANCH }}
|
||||||
|
REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
|
Loading…
x
Reference in New Issue
Block a user