diff --git a/.github/workflows/build-sphinx.yml b/.github/workflows/build-sphinx.yml index ee97ab6c208..864f25b6708 100644 --- a/.github/workflows/build-sphinx.yml +++ b/.github/workflows/build-sphinx.yml @@ -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: @@ -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: | @@ -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 diff --git a/.github/workflows/check-onemath.yaml b/.github/workflows/check-onemath.yaml index 5936834dca1..bc79745a4d0 100644 --- a/.github/workflows/check-onemath.yaml +++ b/.github/workflows/check-onemath.yaml @@ -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 @@ -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 diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index 3d9a994ead4..5398458e67d 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -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 @@ -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: @@ -707,7 +703,7 @@ jobs: needs: [upload] - runs-on: 'ubuntu-latest' + runs-on: ubuntu-latest timeout-minutes: 10 defaults: diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index d8f59405ce8..7f705810dac 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -11,7 +11,7 @@ jobs: pre-commit: name: Check - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 10 steps: