Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ci pip install script #251

Merged
merged 2 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@ jobs:
key: venv-${{ hashFiles('poetry.lock') }}

- name: Install Playsound
run: |
poetry run pip install --upgrade pip
poetry run pip install --upgrade wheel
poetry run pip install playsound
run: scripts/install-playsound.sh

- name: Dependencies
run: poetry install --without dev
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@ jobs:
key: venv-dev-${{ hashFiles('poetry.lock') }}

- name: Install Playsound
run: |
poetry run pip install --upgrade pip
poetry run pip install --upgrade wheel
poetry run pip install playsound
run: scripts/install-playsound.sh

- name: Dependencies
run: poetry install
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ build/*
dist/*
eqalert.egg-info/*
*.pyc
Pipfile

# Coverage
coverage/*
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ $ git clone https://github.com/mgeitz/eqalert.git
$ cd eqalert

# Install playsound
$ poetry run pip install --upgrade pip
$ poetry run pip install --upgrade wheel
$ poetry run pip install playsound
$ scripts/install-playsound.sh

# Retrieve dependencies
$ poetry update
Expand Down
5 changes: 5 additions & 0 deletions scripts/install-playsound.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

poetry run pip install --upgrade pip
poetry run pip install --upgrade wheel
poetry run pip install playsound