1. 27 Mar, 2024 2 commits
  2. 26 Mar, 2024 7 commits
    • Jérome Perrin's avatar
      component/golang: clear user cache after build · 5a70227c
      Jérome Perrin authored
      While running tests using all.bash, `$HOME/.cache/go-build/` is
      populated with data referencing the build folder. This is problematic
      when using shared parts and installing a not pinned software release
      multiple times, like it is the case on test node.
      
      A scenario like this can happen:
      
       - a first succesful build install in `<shared>/golang1.21/<HASH1>`
       - golang1.21 section is changed in a the software release
       - golang1.21 is installed in `<shared>/golang1.21/<HASH2>`, running
         test fails because the cache `<software_folder>/.cache/go-build/` in
         references paths from `<shared>/golang1.21/<HASH1>/.build/go/src`,
         that was used when building the first build and have been removed
         while installing.
      
      This is visible with errors like this:
      
          2024-03-21 20:52:37,214 INFO     slapgrid_sr: 2024-03-21 20:52:37 slapos[23849] INFO vet: can't parse raw cgo file: open ../../../../a984f246a1b2789081965ab5c05674a8/.build/go/src/net/cgo_linux.go: no such file or directory
      5a70227c
    • Thomas Gambier's avatar
      Update git revisions · 2bcd9c57
      Thomas Gambier authored
      2bcd9c57
    • Thomas Gambier's avatar
      Update Release Candidate · 7539a997
      Thomas Gambier authored
      7539a997
    • Ivan Tyagov's avatar
      Fix gcc coupler · 25439fae
      Ivan Tyagov authored
      See merge request !1551
      25439fae
    • Ivan Tyagov's avatar
      Fix gcc coupler · efa0b4b1
      Ivan Tyagov authored
      efa0b4b1
    • Ivan Tyagov's avatar
      Fix gcc · 64c4c052
      Ivan Tyagov authored
      See merge request !1548
      64c4c052
    • Ivan Tyagov's avatar
      Revert "Use gcc-10.2 for beremiz-ide." · ab6abffd
      Ivan Tyagov authored
      This reverts commit 5814aadb.
      ab6abffd
  3. 25 Mar, 2024 1 commit
  4. 22 Mar, 2024 1 commit
  5. 21 Mar, 2024 4 commits
  6. 20 Mar, 2024 3 commits
  7. 19 Mar, 2024 3 commits
  8. 18 Mar, 2024 6 commits
  9. 15 Mar, 2024 2 commits
  10. 13 Mar, 2024 1 commit
    • Léo-Paul Géneau's avatar
      component/qjs-wrapper: v↑ qjs-wrapper (1.3 -> 2.0) · 649249ca
      Léo-Paul Géneau authored
      component/mavsdk: v↑ mavsdk (0.39.0 -> 1.4.13)
      component/gwsocket: add gwsocket websocket server
      software/js-drone: add frontend for subscriber
      software/js-drone: use WebSocket for subscriber
      slapos/software: run quickjs as a service
      649249ca
  11. 12 Mar, 2024 2 commits
    • Łukasz Nowak's avatar
      rapid-cdn: Fix re6st-verification-url testing · be75d825
      Łukasz Nowak authored
       * the default is already tested so drop TestRe6stVerificationUrlDefaultSlave
       * use locally provided URL to check re6st-verification-url, to not depend
         on external resources
      
      !1501 did a good job with making default disabled, but during the code
      review tests changes were not well checked.
      be75d825
    • Titouan Soulard's avatar
      rapid-cdn: fix failing test · 00586554
      Titouan Soulard authored
      logrotate test for the rapid-cdn SR have been failing for quite some
      time because of a squid.log file created (and henceforth rotated) on
      any slave instance of the CDN:
      
      ```
      Traceback (most recent call last):
          self.assertEqual(
      AssertionError: Items in the second set but not the first:
      'squid.log_10.0.160.212.20240306.23h57m09s-20240307.00h00m02s.old.xz'
      ```
      
      Since we do not want to test this file in that specific test, this
      commit instead loosely check the content of the rotated files
      directory.
      In other words, the test now checks for the presence of the two
      files to be tested, but avoid failing if other files exist.
      
      This goes in line with the two following lines of that same test,
      loosely checking for file absence instead of an empty directory.
      
      /cc @tomo @luke
      /approved-by @luke
      /reviewed-on !1541
      00586554
  12. 08 Mar, 2024 3 commits
  13. 05 Mar, 2024 3 commits
  14. 01 Mar, 2024 1 commit
    • Jérome Perrin's avatar
      stack/erp5: patch RestrictedPython to compile with print_function · ccbe9a26
      Jérome Perrin authored
      Every restricted python code on python2 will be compiled as if it had
      `from __future__ import print_function`, to ease transition away from
      python2.
      
      To update project code, 2to3 from python2.7 seems to do a good job.
      Invoking like from the root of a repository rewrite all scripts:
      
          2to3  --write --nobackups --no-diffs --fix=print .
      ccbe9a26
  15. 29 Feb, 2024 1 commit