1. 31 Jan, 2024 3 commits
  2. 29 Jan, 2024 4 commits
  3. 26 Jan, 2024 1 commit
  4. 22 Jan, 2024 4 commits
  5. 19 Jan, 2024 1 commit
  6. 18 Jan, 2024 2 commits
  7. 17 Jan, 2024 2 commits
  8. 08 Jan, 2024 2 commits
  9. 07 Dec, 2023 1 commit
  10. 06 Dec, 2023 1 commit
    • Philipp Wagner's avatar
      Fix common-utils installation on RHEL (and friends) (#772) · def3a41f
      Philipp Wagner authored
      * Fix indentation in common-utils/main.sh
      
      * common-utils: Fix install error on RHEL
      
      On RHEL (and derivatives) the installation of the common-utils feature
      could fail if the feature ran before (i.e., `PACKAGES_ALREADY_INSTALLED`
      is set) and if either `INSTALL_ZSH` is false, or zsh was installed
      earlier and `ZSH_ALREADY_INSTALLED` is true.
      
      In these cases the script the `package_list` is empty, and `dnf`
      terminates with the following error message:
      
      ```
      usage: dnf install [-c [config file]] [-q] [-v] [--version]
                         [--installroot [path]] [--nodocs] [--noplugins]
                         [--enableplugin [plugin]] [--disableplugin [plugin]]
                         [--releasever RELEASEVER] [--setopt SETOPTS]
                         [--skip-broken] [-h] [--allowerasing] [-b | --nobest] [-C]
                         [-R [minutes]] [-d [debug level]] [--debugsolver]
                         [--showduplicates] [-e ERRORLEVEL] [--obsoletes]
                         [--rpmverbosity [debug level name]] [-y] [--assumeno]
                         [--enablerepo [repo]] [--disablerepo [repo] | --repo
                         [repo]] [--enable | --disable] [-x [package]]
                         [--disableexcludes [repo]] [--repofrompath [repo,path]]
                         [--noautoremove] [--nogpgcheck] [--color COLOR] [--refresh]
                         [-4] [-6] [--destdir DESTDIR] [--downloadonly]
                         [--comment COMMENT] [--bugfix] [--enhancement]
                         [--newpackage] [--security] [--advisory ADVISORY]
                         [--bz BUGZILLA] [--cve CVES]
                         [--sec-severity {Critical,Important,Moderate,Low}]
                         [--forcearch ARCH]
                         PACKAGE [PACKAGE ...]
      dnf install: error: the following arguments are required: PACKAGE
      ```
      
      Fix the problem by running `dnf` only with a non-zero `package_list`.
      def3a41f
  11. 14 Nov, 2023 1 commit
  12. 30 Oct, 2023 2 commits
  13. 27 Oct, 2023 2 commits
  14. 23 Oct, 2023 2 commits
  15. 17 Oct, 2023 2 commits
  16. 05 Oct, 2023 1 commit
  17. 04 Oct, 2023 2 commits
  18. 02 Oct, 2023 1 commit
    • Luciana Abud's avatar
      Remove deprecated Python settings (#625) · c3f91050
      Luciana Abud authored
      * Remove deprecated Python settings
      
      * No longer install Python linters and formatters
      
      * Revert "No longer install Python linters and formatters"
      
      This reverts commit 57c7bec14dca54fde4b4df2580ed429484180882.
      
      * Bump minor version
      c3f91050
  19. 29 Sep, 2023 2 commits
  20. 28 Sep, 2023 3 commits
  21. 27 Sep, 2023 1 commit
    • Masahiro Wada's avatar
      Enhancements in CUDA Support (#699) · 243671ee
      Masahiro Wada authored
      * add cuda tookit installing support
      
      * add nvcc installing support
      
      * add libcudnn8-dev installing support
      
      * add new cuda versions adn cudnn versions
      
      * add specificaitons of new option
      
      * remove installNvcc
      
      installNvcc process is included in installToolkit
      
      * add tests for new nvidia-cuda options
      
      * fix wrong scenario name
      
      * Revert "add specificaitons of new option"
      
      This reverts commit 0dcdb92406e38caa297643eab5af641f814b4f69.
      
      README.md should be generated by CI workflow.
      
      * make cudnn-dev installation isolated
      
      * dump minor version to 1.1.0
      243671ee