1. 22 Mar, 2021 1 commit
  2. 21 Mar, 2021 1 commit
    • Julien Muchembled's avatar
      slapos-sr-testing: do not end paths with / · 0803b816
      Julien Muchembled authored
      This may lead to weird like ...//... or worse: here, the [gcc] part of
      the tested SR will do "os.path.dirname('/usr/bin/')" (when using system
      gcc), causing ${gcc:prefix} to be invalid ('/usr/bin' instead of '/usr')
      and most sharable parts will rebuild (different [gcc] signature).
      0803b816
  3. 19 Mar, 2021 2 commits
  4. 17 Mar, 2021 3 commits
  5. 16 Mar, 2021 3 commits
  6. 15 Mar, 2021 1 commit
  7. 12 Mar, 2021 3 commits
  8. 10 Mar, 2021 10 commits
  9. 09 Mar, 2021 9 commits
  10. 08 Mar, 2021 5 commits
  11. 04 Mar, 2021 2 commits
    • Łukasz Nowak's avatar
      170ee884
    • Jérome Perrin's avatar
      software/gitlab: unset $GOBIN · e0feec78
      Jérome Perrin authored
      gitaly's Makefile forcibly sets $GOPATH to install in _build
      folder. Once gitaly is built, it is expected to be in _build/bin/gitaly
      and copied from there.
      
      With 8eac67a5 (golang: Prepare for future GOPATH removal, 2021-02-26) the
      env.sh sets GOBIN, to its own $GOPATH/bin
      
      Since gitaly's build does not set $GOBIN, even if it overrides $GOPATH, the
      final bin/gitaly is not in $GOPATH/bin/gitaly (with $GOPATH from Makefile),
      but in $GOBIN/gitaly (with $GOBIN from env.sh)
      
      To prevent this, unset $GOBIN before running make, which keeps the old
      behavior of only using the $GOPATH from the Makefile
      e0feec78