brizental pushed to branch base-browser-140.2.0esr-15.0-1 at The Tor Project / Applications / Tor Browser

Commits:

1 changed file:

Changes:

  • .gitlab/ci/jobs/lint/lint.yml
    ... ... @@ -4,11 +4,11 @@ lint-all:
    4 4
       image: $IMAGE_PATH
    
    5 5
       interruptible: true
    
    6 6
       variables:
    
    7
    -    MOZBUILD_STATE_PATH: "$CI_PROJECT_DIR/.cache/mozbuild"
    
    7
    +    # Has to be the same as defined in `containers/base/Containerfile`
    
    8
    +    MOZBUILD_STATE_PATH: "/var/tmp/mozbuild"
    
    8 9
       cache:
    
    9 10
         paths:
    
    10 11
           - node_modules
    
    11
    -      - .cache/mozbuild
    
    12 12
         # Store the cache regardless on job outcome
    
    13 13
         when: 'always'
    
    14 14
         # Share the cache throughout all pipelines running for a given branch
    
    ... ... @@ -17,7 +17,7 @@ lint-all:
    17 17
         # Run these jobs in the browser dedicated runners.
    
    18 18
         - firefox
    
    19 19
       script:
    
    20
    -    - ./mach configure --without-wasm-sandboxed-libraries --with-base-browser-version=0.0.0
    
    20
    +    - ./mach configure --with-base-browser-version=0.0.0
    
    21 21
         - .gitlab/ci/jobs/lint/helpers.py --get-changed-files | xargs -0 --no-run-if-empty ./mach lint -v
    
    22 22
       rules:
    
    23 23
         - if: $CI_PIPELINE_SOURCE == 'merge_request_event'