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

Commits:

1 changed file:

Changes:

  • .gitlab/ci/jobs/update-translations.yml
    ... ... @@ -80,14 +80,11 @@
    80 80
     
    
    81 81
     
    
    82 82
     combine-en-US-translations:
    
    83
    -  extends: .update-translation-base
    
    83
    +  extends:
    
    84
    +    - .with-local-repo-bash
    
    85
    +    - .update-translation-base
    
    84 86
       needs: []
    
    85
    -  image: python
    
    86
    -  variables:
    
    87
    -    PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
    
    88
    -  cache:
    
    89
    -    paths:
    
    90
    -      - .cache/pip
    
    87
    +  image: $IMAGE_PATH
    
    91 88
       # Artifact is for translation project job
    
    92 89
       artifacts:
    
    93 90
         paths:
    
    ... ... @@ -97,12 +94,14 @@ combine-en-US-translations:
    97 94
           dotenv: job_id.env
    
    98 95
       # Don't load artifacts for this job.
    
    99 96
       dependencies: []
    
    97
    +  tags:
    
    98
    +    # Run these jobs in the browser dedicated runners.
    
    99
    +    - firefox
    
    100 100
       script:
    
    101 101
         # Save this CI_JOB_ID to the dotenv file to be used in the variables for the
    
    102 102
         # push-en-US-translations job.
    
    103 103
         - echo 'COMBINE_TRANSLATIONS_JOB_ID='"$CI_JOB_ID" >job_id.env
    
    104
    -    - pip install compare_locales
    
    105
    -    - python ./tools/base_browser/l10n/combine-translation-versions.py "$CI_COMMIT_BRANCH" "$TRANSLATION_FILES" "$COMBINED_FILES_JSON"
    
    104
    +    - ./mach python ./tools/base_browser/l10n/combine-translation-versions.py "$CI_COMMIT_BRANCH" "$TRANSLATION_FILES" "$COMBINED_FILES_JSON"
    
    106 105
     
    
    107 106
     push-en-US-translations:
    
    108 107
       extends: .update-translation-base