Merge pull request 'speed up CI dependency installation' (#29) from ci-speed-optimizations into master
All checks were successful
Create Blog Article if new notes exist / prepare_blog_drafts_and_push (push) Successful in 7m3s
All checks were successful
Create Blog Article if new notes exist / prepare_blog_drafts_and_push (push) Successful in 7m3s
Reviewed-on: #29
This commit is contained in:
commit
afc2f36e13
@ -15,12 +15,12 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
apt update && apt upgrade -y
|
apt update -qq
|
||||||
apt install rustc cargo python-is-python3 pip python3-venv python3-virtualenv libmagic-dev git -y
|
apt install -y -qq python-is-python3 pip python3-venv libmagic-dev git
|
||||||
virtualenv .venv
|
python -m venv .venv
|
||||||
source .venv/bin/activate
|
source .venv/bin/activate
|
||||||
pip install --upgrade pip
|
pip install --upgrade pip -q
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt --prefer-binary -q
|
||||||
git config --global user.name "Blog Creator"
|
git config --global user.name "Blog Creator"
|
||||||
git config --global user.email "ridgway.infrastructure@gmail.com"
|
git config --global user.email "ridgway.infrastructure@gmail.com"
|
||||||
git config --global push.autoSetupRemote true
|
git config --global push.autoSetupRemote true
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user