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

Switch to audb-public repo on S3 #16

Merged
merged 2 commits into from
Dec 6, 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
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",
)
Loading