mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 14:21:05 +00:00
4717c3ee73
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
90 lines
2.1 KiB
YAML
90 lines
2.1 KiB
YAML
name: Build
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
repo:
|
|
required: true
|
|
type: string
|
|
description: "'erpnext' or 'frappe'"
|
|
version:
|
|
required: true
|
|
type: string
|
|
description: "Major version, git tags should match 'v{version}.*'; or 'develop'"
|
|
push:
|
|
required: true
|
|
type: boolean
|
|
python_version:
|
|
required: true
|
|
type: string
|
|
description: Python Version
|
|
node_version:
|
|
required: true
|
|
type: string
|
|
description: NodeJS Version
|
|
secrets:
|
|
DOCKERHUB_USERNAME:
|
|
required: true
|
|
DOCKERHUB_TOKEN:
|
|
required: true
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
registry:
|
|
image: registry:2
|
|
ports:
|
|
- 5000:5000
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
driver-opts: network=host
|
|
|
|
- name: Get latest versions
|
|
run: python3 ./.github/scripts/get_latest_tags.py --repo ${{ inputs.repo }} --version ${{ inputs.version }}
|
|
|
|
- name: Set build args
|
|
run: |
|
|
echo "PYTHON_VERSION=${{ inputs.python_version }}" >> "$GITHUB_ENV"
|
|
echo "NODE_VERSION=${{ inputs.node_version }}" >> "$GITHUB_ENV"
|
|
|
|
- name: Build
|
|
uses: docker/bake-action@v4.1.0
|
|
with:
|
|
push: true
|
|
env:
|
|
REGISTRY_USER: localhost:5000/frappe
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.10"
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m venv venv
|
|
venv/bin/pip install -r requirements-test.txt
|
|
|
|
- name: Test
|
|
run: venv/bin/pytest --color=yes
|
|
|
|
- name: Login
|
|
if: ${{ inputs.push }}
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Push
|
|
if: ${{ inputs.push }}
|
|
uses: docker/bake-action@v4.1.0
|
|
with:
|
|
push: true
|