[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] [Git][tpo/applications/fenix][tor-browser-81.1.1-10.0-1] 2 commits: Pin CI builds to runners with 32GB of RAM to avoid OOM conditions.



Title: GitLab

Georg Koppen (owner) pushed to branch tor-browser-81.1.1-10.0-1 at The Tor Project / Applications / fenix

Commits:

2 changed files:

Changes:

  • .gitlab-ci.yml
    ... ... @@ -15,6 +15,8 @@ default:
    15 15
         # See https://about.gitlab.com/blog/2018/10/24/setting-up-gitlab-ci-for-android-projects/
    
    16 16
         # https://github.com/docker-library/openjdk/blob/master/8/jdk/buster/Dockerfile
    
    17 17
         image: openjdk:8-jdk
    
    18
    +    tags:
    
    19
    +        - 32GB
    
    18 20
     
    
    19 21
         before_script:
    
    20 22
             - set -e
    

  • app/build.gradle
    ... ... @@ -678,7 +678,10 @@ ext.updateExtensionVersion = { task, extDir ->
    678 678
             rename { 'manifest.json' }
    
    679 679
             into extDir
    
    680 680
     
    
    681
    -        def values = ['version': AndroidComponents.VERSION + "." + new Date().format('MMddHHmmss')]
    
    681
    +        def systemEnvBuildDate = System.getenv('MOZ_BUILD_DATE')
    
    682
    +        def values = ['version': AndroidComponents.VERSION + "." +
    
    683
    +                      (systemEnvBuildDate != null ? systemEnvBuildDate :
    
    684
    +                      new Date().format('MMddHHmmss'))]
    
    682 685
             inputs.properties(values)
    
    683 686
             expand(values)
    
    684 687
         }
    

  • _______________________________________________
    tor-commits mailing list
    tor-commits@xxxxxxxxxxxxxxxxxxxx
    https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits