tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

cipher.yml (1637B)


      1 task-defaults:
      2    worker:
      3        env:
      4            TC_PARENT_TASK_ID: {task-reference: "<certs>"}
      5            NSS_TESTS: cipher
      6        max-run-time: 7200
      7    from-deps:
      8        kinds: [certs]
      9        with-attributes:
     10            nspr: [false]
     11            dbm: [false]
     12            cc: [false]
     13            make-fips: [false]
     14 
     15 cipher:
     16    description: Cipher tests
     17    treeherder:
     18        symbol: Cipher(Default)
     19 
     20 cipher-noaes:
     21    description: Cipher tests, no AES
     22    treeherder:
     23        symbol: Cipher(NoAES)
     24    worker:
     25        env:
     26            NSS_DISABLE_HW_AES: "1"
     27 
     28 cipher-nosha:
     29    description: Cipher tests, no SHA
     30    treeherder:
     31        symbol: Cipher(NoSHA)
     32    worker:
     33        env:
     34            NSS_DISABLE_HW_SHA1: "1"
     35            NSS_DISABLE_HW_SHA2: "1"
     36 
     37 cipher-nopclmul:
     38    description: Cipher tests, no PCLMUL
     39    treeherder:
     40        symbol: Cipher(NoPCLMUL)
     41    worker:
     42        env:
     43            NSS_DISABLE_PCLMUL: "1"
     44 
     45 cipher-noavx:
     46    description: Cipher tests, no AVX
     47    treeherder:
     48        symbol: Cipher(NoAVX)
     49    worker:
     50        env:
     51            NSS_DISABLE_AVX: "1"
     52 
     53 cipher-noavx:
     54    description: Cipher tests, no AVX2
     55    treeherder:
     56        symbol: Cipher(NoAVX2)
     57    worker:
     58        env:
     59            NSS_DISABLE_AVX2: "1"
     60 
     61 cipher-nossse3:
     62    description: Cipher tests, no SSSE3|NEON
     63    treeherder:
     64        symbol: Cipher(NoSSSE3|NEON)
     65    worker:
     66        env:
     67            NSS_DISABLE_ARM_NEON: "1"
     68            NSS_DISABLE_SSSE3: "1"
     69 
     70 cipher-nosse41:
     71    description: Cipher tests, no SSE4.1
     72    treeherder:
     73        symbol: Cipher(NoSSE4.1)
     74    worker:
     75        env:
     76            NSS_DISABLE_SSE4_1: "1"