Skip to content

Commit

Permalink
Switch to audb-public repo on S3 (#16)
Browse files Browse the repository at this point in the history
* Switch to audb-public repo on S3

* Fix pip install command
  • Loading branch information
hagenw authored Dec 6, 2024
1 parent 8e25b4a commit 2eb6d27
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Ubuntu - install libsndfile
- name: Install audio + video libraries
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends --yes libsndfile1
sudo apt-get install --no-install-recommends --yes libsndfile1 ffmpeg mediainfo
# DOCS
- name: Install docs requirements
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
# Documentation
- name: Install doc dependencies
run: |
sudo apt-get install --no-install-recommends --yes libsndfile1 sox
sudo apt-get update
sudo apt-get install --no-install-recommends --yes libsndfile1 ffmpeg mediainfo
pip install -r docs/requirements.txt
- name: Build documentation
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ jobs:
for apt_file in `grep -lr microsoft /etc/apt/sources.list.d/`; do sudo rm $apt_file; done
# Documentation
- name: Install doc dependencies
- name: Install audio + video libraries
run: |
sudo apt-get install --no-install-recommends --yes libsndfile1 sox
sudo apt-get update
sudo apt-get install --no-install-recommends --yes libsndfile1 sox ffmpeg mediainfo
pip install -r docs/requirements.txt
- name: Build documentation
Expand Down
6 changes: 3 additions & 3 deletions repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


repository = audb.Repository(
"data-public",
"https://audeering.jfrog.io/artifactory",
"artifactory",
"audb-public",
"s3.dualstack.eu-north-1.amazonaws.com",
"s3",
)

0 comments on commit 2eb6d27

Please sign in to comment.