Skip to content

Commit

Permalink
Replaced apt with apt-get in GH workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
glebashnik committed Aug 7, 2024
1 parent 30f9d7b commit 2d0a815
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/notebooks-except-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ jobs:
sudo rm -rf /usr/share/dotnet
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Install OpenMP
run: |
# Required for using lightgbm
sudo apt-get update
sudo apt-get install -y install libgomp1 zstd
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand All @@ -58,11 +64,6 @@ jobs:
pip install -e .[dev]
pip install -r docs/sphinx/source/notebook_requirements.txt
- name: Install OpenMP
run: |
# Required for using lightgbm
sudo apt install -y install libgomp1 zstd
- name: Run notebooks tests
run: |
echo "Running ${{ matrix.notebook }}"
Expand Down

0 comments on commit 2d0a815

Please sign in to comment.