1. 24 Mar, 2021 3 commits
  2. 23 Mar, 2021 9 commits
  3. 22 Mar, 2021 4 commits
  4. 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
  5. 19 Mar, 2021 2 commits
  6. 17 Mar, 2021 3 commits
  7. 16 Mar, 2021 3 commits
  8. 15 Mar, 2021 1 commit
  9. 12 Mar, 2021 3 commits
  10. 10 Mar, 2021 10 commits
  11. 09 Mar, 2021 1 commit
    • Kirill Smelkov's avatar
      golang: Fix build to be robust to $GOBIN set from outside · 3b846961
      Kirill Smelkov authored
      Xavier Thompson reports that when Theia is compiled inside Theia, Go
      fails to install with the error showing that golang14's make.bash calls
      `go install` to install cmd/go and other commands to the outer
      go.work/bin instead of inside $GOROOT_FINAL set by the build recipe.
      
      Similarly to !928 this
      might be to the fact that internal `go install` prioritizes $GOBIN even
      in the presence of set $GOROOT_FINAL.
      
      -> Don't try to fix Go itself, and make the compilation more robust by
      unsetting $GOBIN, so that even if that variable is set in the
      environment where buildout runs, it does not affect the compilation
      procedure.
      
      Fixes: 8eac67a5 (golang: Prepare for future GOPATH removal)
      Reported-on: https://www.erp5.com/group_section/forum/Go-compilation-error-P6f5WisQkc
      Tested-by: @xavier_thompson
      Reviewed-on: !932
      3b846961