mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-26 09:05:10 +00:00
ci: fix install dependencies
This commit is contained in:
parent
10447109d4
commit
f5eb3c3965
4 changed files with 2 additions and 12 deletions
4
.github/workflows/build_develop.yml
vendored
4
.github/workflows/build_develop.yml
vendored
|
|
@ -14,10 +14,6 @@ jobs:
|
|||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- name: Install build dependencies
|
||||
run: |
|
||||
sudo apt update && sudo apt install curl python3 python3-pip git -y
|
||||
curl -fsSL https://get.docker.com | sh
|
||||
- name: Build Frappe bench development environment (latest)
|
||||
run: |
|
||||
docker build -t frappe/bench:latest -f build/bench/Dockerfile .
|
||||
|
|
|
|||
4
.github/workflows/build_main.yml
vendored
4
.github/workflows/build_main.yml
vendored
|
|
@ -14,10 +14,6 @@ jobs:
|
|||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- name: Install build dependencies
|
||||
run: |
|
||||
sudo apt update && sudo apt install curl python3 python3-pip git -y
|
||||
curl -fsSL https://get.docker.com | sh
|
||||
- name: Build Frappe v13
|
||||
run: |
|
||||
./builder.py frappe --worker --git-version 13
|
||||
|
|
|
|||
3
.github/workflows/test_develop.yml
vendored
3
.github/workflows/test_develop.yml
vendored
|
|
@ -16,8 +16,7 @@ jobs:
|
|||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- name: Install build dependencies
|
||||
run: |
|
||||
sudo apt update && sudo apt install curl python3 python3-pip git -y
|
||||
curl -fsSL https://get.docker.com | sh
|
||||
sudo apt update && sudo apt install curl w3m shellcheck -y
|
||||
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
|
||||
chmod +x /usr/local/bin/docker-compose
|
||||
- name: Pull and test edge images
|
||||
|
|
|
|||
3
.github/workflows/test_pr.yml
vendored
3
.github/workflows/test_pr.yml
vendored
|
|
@ -16,8 +16,7 @@ jobs:
|
|||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- name: Install build dependencies
|
||||
run: |
|
||||
sudo apt update && sudo apt install curl python3 python3-pip git w3m shellcheck -y
|
||||
curl -fsSL https://get.docker.com | sh
|
||||
sudo apt update && sudo apt install curl w3m shellcheck -y
|
||||
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
|
||||
chmod +x /usr/local/bin/docker-compose
|
||||
- name: Build and test edge images
|
||||
|
|
|
|||
Loading…
Reference in a new issue