mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 14:21:05 +00:00
Rollback
This commit is contained in:
parent
5b3046fb69
commit
2979f4644f
50
.github/workflows/docker-build.yml
vendored
50
.github/workflows/docker-build.yml
vendored
@ -1,50 +0,0 @@
|
|||||||
name: Build
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_call:
|
|
||||||
inputs:
|
|
||||||
version:
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
description: Major Frappe/ERPNext version. 12, 13 or develop.
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
services:
|
|
||||||
registry:
|
|
||||||
image: registry:2
|
|
||||||
ports:
|
|
||||||
- 5000:5000
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Setup Python
|
|
||||||
uses: actions/setup-python@v2
|
|
||||||
with:
|
|
||||||
python-version: 3.9
|
|
||||||
|
|
||||||
- name: Setup Buildx
|
|
||||||
uses: docker/setup-buildx-action@v1
|
|
||||||
with:
|
|
||||||
driver-opts: network=host
|
|
||||||
|
|
||||||
- name: Install Docker Compose v2
|
|
||||||
uses: ndeloof/install-compose-action@4a33bc31f327b8231c4f343f6fba704fedc0fa23
|
|
||||||
|
|
||||||
- name: Get latest versions
|
|
||||||
run: ./.github/scripts/get-latest-tags.sh
|
|
||||||
env:
|
|
||||||
VERSION: ${{ inputs.version }}
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
uses: docker/bake-action@v1.6.0
|
|
||||||
with:
|
|
||||||
push: true
|
|
||||||
env:
|
|
||||||
USERNAME: localhost:5000/frappe
|
|
||||||
|
|
||||||
- name: Test
|
|
||||||
run: python3 tests/main.py
|
|
37
.github/workflows/main.yml
vendored
37
.github/workflows/main.yml
vendored
@ -37,14 +37,47 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
services:
|
||||||
|
registry:
|
||||||
|
image: registry:2
|
||||||
|
ports:
|
||||||
|
- 5000:5000
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
version: [12, 13]
|
version: [12, 13]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: vrslev/frappe_docker/.github/workflows/docker-build.yml@beautify
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Setup Python
|
||||||
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
version: ${{ matrix.version }}
|
python-version: 3.9
|
||||||
|
|
||||||
|
- name: Setup Buildx
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
with:
|
||||||
|
driver-opts: network=host
|
||||||
|
|
||||||
|
- name: Install Docker Compose v2
|
||||||
|
uses: ndeloof/install-compose-action@4a33bc31f327b8231c4f343f6fba704fedc0fa23
|
||||||
|
|
||||||
|
- name: Get latest versions
|
||||||
|
run: ./.github/scripts/get-latest-tags.sh
|
||||||
|
env:
|
||||||
|
VERSION: ${{ matrix.version }}
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
uses: docker/bake-action@v1.6.0
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
env:
|
||||||
|
USERNAME: localhost:5000/frappe
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
run: python3 tests/main.py
|
||||||
|
|
||||||
- name: Login
|
- name: Login
|
||||||
if: ${{ github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request' }}
|
if: ${{ github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request' }}
|
||||||
|
Loading…
Reference in New Issue
Block a user