Skip to content
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
11 changes: 2 additions & 9 deletions .github/workflows/build-sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
build-and-deploy:
name: Build and Deploy Docs

runs-on: ubuntu-22.04
runs-on: ubuntu-latest
timeout-minutes: 90

permissions:
Expand Down Expand Up @@ -70,13 +70,6 @@ jobs:
echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
sudo apt update

- name: Update libstdc++-dev
run: |
sudo apt remove -y gcc-7 g++-7 gcc-8 g++-8 gcc-10 g++-10
sudo apt remove -y libstdc++-10-dev
sudo apt autoremove
sudo apt install --reinstall -y gcc-9 g++-9 libstdc++-9-dev

- name: Install Intel OneAPI
if: env.oneapi-pkgs-env == ''
run: |
Expand All @@ -97,7 +90,7 @@ jobs:
run: |
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install -y libnvidia-gl-450
sudo apt-get install -y libnvidia-gl-550
sudo apt-get install -y nvidia-cuda-toolkit clinfo

- name: Checkout repo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-onemath.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
fail-fast: false
matrix:
python: ['3.13'] # no dpctl package on PyPI with enabled python 3.14 support
os: [ubuntu-22.04] # windows-2022 - no DFT support for Windows in oneMKL
os: [ubuntu-latest] # windows-2022 - no DFT support for Windows in oneMKL

runs-on: ${{ matrix.os }}
timeout-minutes: 120
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
fail-fast: false
matrix:
python: ['3.13'] # no dpctl package on PyPI with enabled python 3.14 support
os: [ubuntu-22.04] # windows-2022 - no DFT support for Windows in oneMKL
os: [ubuntu-latest] # windows-2022 - no DFT support for Windows in oneMKL

runs-on: ${{ matrix.os }}
timeout-minutes: 60
Expand Down
10 changes: 3 additions & 7 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ jobs:
fail-fast: false
matrix:
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
os: [ubuntu-22.04, windows-2022]
os: [ubuntu-latest, windows-2022]

runs-on: ${{ matrix.os }}
timeout-minutes: 10
Expand Down Expand Up @@ -537,11 +537,7 @@ jobs:
# Needed to add a comment to a pull request's issue
pull-requests: write

strategy:
matrix:
os: [ubuntu-22.04]

runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
timeout-minutes: 15

defaults:
Expand Down Expand Up @@ -707,7 +703,7 @@ jobs:

needs: [upload]

runs-on: 'ubuntu-latest'
runs-on: ubuntu-latest
timeout-minutes: 10

defaults:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
pre-commit:
name: Check

runs-on: ubuntu-22.04
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
Expand Down
Loading