Skip to content
Snippets Groups Projects
  1. Oct 19, 2022
    • Antoine Lambert's avatar
      templates/swh-pipeline: Fetch master branch only when cloning repo · cabe23bc
      Antoine Lambert authored
      The jobs associated to this pipeline are only triggered when commiting
      on the master branch or when pushing a phabricator diff based on a
      commit of the master branch.
      
      So in order to save time, data transfer and avoid possible clone issues,
      fetch only the master branch when cloning as all remote branches are
      fetched by default.
      
      Related to T4641
      cabe23bc
  2. Oct 18, 2022
  3. Sep 29, 2022
  4. Sep 15, 2022
  5. Aug 31, 2022
    • Antoine Lambert's avatar
      templates/cypress: Run tests in parallel using sorry-cypress · ddbafe95
      Antoine Lambert authored
      In order to gain some time when executing Jenkins jobs for swh-web,
      execute cypress tests in parallel using 4 runners thanks to the
      sorry-cypress tool.
      
      To do so, we use the docker features of Jenkins pipeline.
      One sidecar container is created to execute the sorry-cypress server
      and parallel tests are executed in another container spawning 4
      cypress processes. The communication between the two containers
      is done through a dedicated docker network.
      
      Regarding code coverage, we now need to merge the outputs produced
      by the 4 runners before generating reports.
      
      This change brings a 2x speedup on overall swh-web build jobs execution
      (when a single job is executed, speedup is lesser when multiple jobs
      are executed in parallel but still significative).
      
      Also restrict the maximum number of concurrent builds per job to 3
      in order to avoid executing too many cypress processes at the same
      time as they consume quite a lot of resources on the Jenkins node.
      
      Related to T3423
      ddbafe95
    • Antoine Lambert's avatar
      jobs/swh-pipeline: Enable to limit number of concurrent builds per job · b00f888c
      Antoine Lambert authored
      Add a max_concurrent option to swh pipeline jobs (master, Phabricator diff)
      in order to limit the number of concurrent builds per job.
      
      The number of concurrent builds is not limited by default.
      
      Related to T3423
      b00f888c
  6. Aug 26, 2022
  7. Aug 19, 2022
  8. Aug 11, 2022
  9. Aug 10, 2022
    • Antoine Lambert's avatar
      docker: Mount and clone local swh-jenkins-jobs repo for conf testing · 7b19d5be
      Antoine Lambert authored
      Currently, the only way to test Jenkins configuration changes using
      docker is to push changes to a remote feature branch in swh-jenkins-jobs
      repository and make jenkins clone that branch to test the changes.
      
      This is not really convenient to quickly test changes so prefer to
      mount the local swh-jenkins-jobs repository as a docker volume
      and clone that repository from Jenkins filesystem.
      7b19d5be
  10. Jul 20, 2022
  11. Jun 30, 2022
  12. Jun 28, 2022
  13. Jun 03, 2022
  14. May 23, 2022
    • vlorentz's avatar
      Run flake8/mypy/radon sequentially · 166de856
      vlorentz authored
      We have a recurring data race in flake8 tasks, probably caused by 'tox -e mypy'
      creating and deleting files while flake8 scans them; so we should not run
      them at the same time.
      
      While we are at it; also run radon sequentially. flake8 and radon each take less
      than 10s, so we should not notice much of a difference.
      166de856
  15. May 04, 2022
  16. Apr 26, 2022
  17. Apr 25, 2022
  18. Apr 22, 2022
  19. Apr 13, 2022
    • Antoine R. Dumont's avatar
      Simplify docker image build to not override the docker image to build · 723923ce
      Antoine R. Dumont authored
      That's up to the repository's Makefile to determine that. That way, it currently fixes
      the build and push tag logic target to actually work. But bonus, it will allow to keep
      the building logic of image(s) within the scope of the repository which knows what to
      do (so building multiple images becomes possible with that very build).
      
      So now the makefile must respect the following conventions (still explained in the
      template):
      - build: locally build the image out of the repository
      TAG, IMAGE_LABEL (to ease cleanup part) must be provided
      - test: test the locally built image
      TAG must be provided
      - clean: clean up locally built image (parametric on the jenkins build)
      IMAGE_LABEL must be provided
      - push: publish to the registry
      TAG, REGISTRY_URL must be provided
      723923ce
  20. Apr 12, 2022
    • Antoine R. Dumont's avatar
      Adapt docker image build to respect a Makefile interface · 65326037
      Antoine R. Dumont authored
      Explained in the pipeline source template.
      
      The following pipeline uses a specific Makefile with the following targets:
      - build: locally build the image out of the repository
        IMAGE_NAME, TAG and IMAGE_LABEL must be provided
      - test: test the locally built image
        IMAGE_NAME, TAG must be provided
      - clean: clean up locally built image (parametric on the jenkins build)
        IMAGE_LABEL must be provided
      - push: publish to the registry
        IMAGE_NAME, TAG, REGISTRY_URL must be provided
      65326037
  21. Apr 07, 2022
  22. Apr 06, 2022
  23. Apr 01, 2022
  24. Mar 30, 2022
  25. Mar 29, 2022
  26. Mar 15, 2022
  27. Feb 16, 2022
  28. Dec 15, 2021
Loading