132 lines
2.8 KiB
YAML
132 lines
2.8 KiB
YAML
---
|
|
|
|
name: 'CI'
|
|
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
tags:
|
|
- '*'
|
|
|
|
env:
|
|
GIT_SYNC_URL: "https://${{ secrets.GITLAB_USERNAME_ROBOT }}:${{ secrets.GITLAB_TOKEN_ROBOT }}@gitlab.com/nofusscomputing/projects/centurion_erp.git"
|
|
|
|
jobs:
|
|
|
|
|
|
mkdocs:
|
|
name: 'MKDocs'
|
|
permissions:
|
|
pull-requests: write
|
|
contents: write
|
|
statuses: write
|
|
checks: write
|
|
actions: write
|
|
uses: nofusscomputing/action_mkdocs/.github/workflows/reusable_mkdocs.yaml@development
|
|
|
|
|
|
docker:
|
|
name: 'Docker'
|
|
uses: nofusscomputing/action_docker/.github/workflows/docker.yaml@development
|
|
with:
|
|
DOCKER_BUILD_IMAGE_NAME: "nofusscomputing/centurion-erp"
|
|
DOCKER_PUBLISH_REGISTRY: "docker.io"
|
|
DOCKER_PUBLISH_IMAGE_NAME: "nofusscomputing/centurion-erp"
|
|
secrets:
|
|
DOCKER_PUBLISH_USERNAME: ${{ secrets.NFC_DOCKERHUB_USERNAME }}
|
|
DOCKER_PUBLISH_PASSWORD: ${{ secrets.NFC_DOCKERHUB_TOKEN }}
|
|
|
|
|
|
python:
|
|
name: 'Python'
|
|
uses: nofusscomputing/action_python/.github/workflows/python.yaml@development
|
|
secrets:
|
|
WORKFLOW_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
|
|
|
|
|
|
integration-test:
|
|
name: 'Integration Test'
|
|
uses: nofusscomputing/action_python/.github/workflows/python-integration.yaml@development
|
|
needs:
|
|
- docker
|
|
with:
|
|
PYTHON_VERSION: '3.11'
|
|
secrets:
|
|
WORKFLOW_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
|
|
|
|
|
|
gitlab-mirror:
|
|
if: ${{ github.repository == 'nofusscomputing/centurion_erp' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
|
|
- name: Checks
|
|
shell: bash
|
|
run: |
|
|
if [ "0${{ env.GIT_SYNC_URL }}" == "0" ]; then
|
|
|
|
echo "[ERROR] you must define variable GIT_SYNC_URL for mirroring this repository.";
|
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
|
|
- name: clone
|
|
shell: bash
|
|
run: |
|
|
|
|
git clone --mirror https://github.com/${{ github.repository }} repo;
|
|
|
|
ls -la repo/
|
|
|
|
|
|
- name: add remote
|
|
shell: bash
|
|
run: |
|
|
|
|
cd repo;
|
|
|
|
echo "**************************************** - git remote -v";
|
|
|
|
git remote -v;
|
|
|
|
echo "****************************************";
|
|
|
|
git remote add destination $GIT_SYNC_URL;
|
|
|
|
|
|
- name: push branches
|
|
shell: bash
|
|
run: |
|
|
|
|
cd repo;
|
|
|
|
echo "**************************************** - git branch";
|
|
|
|
git branch;
|
|
|
|
echo "****************************************";
|
|
|
|
# git push destination --all --force;
|
|
|
|
git push destination --mirror || true;
|
|
|
|
|
|
# - name: push tags
|
|
# shell: bash
|
|
# run: |
|
|
|
|
# cd repo;
|
|
|
|
# echo "**************************************** - git tag";
|
|
|
|
# git tag;
|
|
|
|
# echo "****************************************";
|
|
|
|
# git push destination --tags --force;
|