mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-27 17:25:08 +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:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
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)
|
- name: Build Frappe bench development environment (latest)
|
||||||
run: |
|
run: |
|
||||||
docker build -t frappe/bench:latest -f build/bench/Dockerfile .
|
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:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
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
|
- name: Build Frappe v13
|
||||||
run: |
|
run: |
|
||||||
./builder.py frappe --worker --git-version 13
|
./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 }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
- name: Install build dependencies
|
- name: Install build dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt update && sudo apt install curl python3 python3-pip git -y
|
sudo apt update && sudo apt install curl w3m shellcheck -y
|
||||||
curl -fsSL https://get.docker.com | sh
|
|
||||||
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
|
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
|
chmod +x /usr/local/bin/docker-compose
|
||||||
- name: Pull and test edge images
|
- 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 }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
- name: Install build dependencies
|
- name: Install build dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt update && sudo apt install curl python3 python3-pip git w3m shellcheck -y
|
sudo apt update && sudo apt install curl w3m shellcheck -y
|
||||||
curl -fsSL https://get.docker.com | sh
|
|
||||||
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
|
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
|
chmod +x /usr/local/bin/docker-compose
|
||||||
- name: Build and test edge images
|
- name: Build and test edge images
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue