mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-26 09:05:10 +00:00
ci: fix install workflow dependencies
This commit is contained in:
parent
6ec9b224c6
commit
6ac3cf47cf
4 changed files with 4 additions and 6 deletions
4
.github/workflows/build_develop.yml
vendored
4
.github/workflows/build_develop.yml
vendored
|
|
@ -16,10 +16,8 @@ jobs:
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
- name: Install build dependencies
|
- name: Install build dependencies
|
||||||
run: |
|
run: |
|
||||||
apt update && apt install curl python3 git w3m shellcheck -y
|
sudo apt update && sudo apt install curl python3 python3-pip git -y
|
||||||
curl -fsSL https://get.docker.com | sh
|
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
|
|
||||||
chmod +x /usr/local/bin/docker-compose
|
|
||||||
- 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 .
|
||||||
|
|
|
||||||
2
.github/workflows/build_main.yml
vendored
2
.github/workflows/build_main.yml
vendored
|
|
@ -16,7 +16,7 @@ jobs:
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
- name: Install build dependencies
|
- name: Install build dependencies
|
||||||
run: |
|
run: |
|
||||||
apt update && apt install curl python3 python3-pip git -y
|
sudo apt update && sudo apt install curl python3 python3-pip git -y
|
||||||
curl -fsSL https://get.docker.com | sh
|
curl -fsSL https://get.docker.com | sh
|
||||||
- name: Build Frappe v13
|
- name: Build Frappe v13
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
2
.github/workflows/test_develop.yml
vendored
2
.github/workflows/test_develop.yml
vendored
|
|
@ -16,7 +16,7 @@ jobs:
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
- name: Install build dependencies
|
- name: Install build dependencies
|
||||||
run: |
|
run: |
|
||||||
apt update && apt install curl python3 git w3m shellcheck -y
|
sudo apt update && sudo apt install curl python3 python3-pip git -y
|
||||||
curl -fsSL https://get.docker.com | sh
|
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
|
||||||
|
|
|
||||||
2
.github/workflows/test_pr.yml
vendored
2
.github/workflows/test_pr.yml
vendored
|
|
@ -16,7 +16,7 @@ jobs:
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
- name: Install build dependencies
|
- name: Install build dependencies
|
||||||
run: |
|
run: |
|
||||||
apt update && apt install curl python3 git w3m shellcheck -y
|
sudo apt update && sudo apt install curl python3 python3-pip git w3m shellcheck -y
|
||||||
curl -fsSL https://get.docker.com | sh
|
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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue