Overview
Comment: | [build] don’t use Firefox nightly for Addon-SDK tests -> developper edition |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | build | webext2 |
Files: | files | file ages | folders |
SHA3-256: |
97544c27f23551d2b165730d0f9d4d1a |
User & Date: | olr on 2017-08-06 13:27:23 |
Other Links: | branch diff | manifest | tags |
Context
2017-08-06
| ||
13:40 | [build] paths for Firefox on Windows and on Linux check-in: 7ba08610f3 user: olr tags: build, webext2 | |
13:27 | [build] don’t use Firefox nightly for Addon-SDK tests -> developper edition check-in: 97544c27f2 user: olr tags: build, webext2 | |
12:22 | [core][fr][js] merge webext2_fix: code cleaning + bug fixes + remove Array comprehensions (for compatibility) check-in: d0f7053d0f user: olr tags: fr, core, webext2 | |
Changes
Modified gc_lang/fr/config.ini from [68082dbc1d] to [1617a5f4ba].
︙ | ︙ | |||
28 29 30 31 32 33 34 | oxt_identifier = French.linguistic.resources.from.Dicollecte.by.OlivierR # Firefox fx_identifier = French-GC@grammalecte.net fx_name = Grammalecte [fr] fx_standard_path = C:\Program Files\Mozilla Firefox\firefox.exe | | | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | oxt_identifier = French.linguistic.resources.from.Dicollecte.by.OlivierR # Firefox fx_identifier = French-GC@grammalecte.net fx_name = Grammalecte [fr] fx_standard_path = C:\Program Files\Mozilla Firefox\firefox.exe fx_dev_path = C:\Program Files\Firefox Developer Edition\firefox.exe fx_nightly_path = C:\Program Files (x86)\Nightly\firefox.exe # Thunderbird tb_identifier = French-GC-TB@grammalecte.net tb_name = Grammalecte [fr] tb_debug_extension_path = _build/tb-debug.profile/extensions/French-GC-TB@grammalecte.net |
︙ | ︙ |
Modified make.py from [e6482fde8c] to [d0e8712740].
︙ | ︙ | |||
346 347 348 349 350 351 352 | if xArgs.perf or xArgs.perf_memo: hDst = open("./gc_lang/"+sLang+"/perf_memo.txt", "a", encoding="utf-8", newline="\n") if xArgs.perf_memo else None tests.perf(sVersion, hDst) # Firefox if xArgs.firefox: with helpers.cd("_build/xpi/"+sLang): | | | 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 | if xArgs.perf or xArgs.perf_memo: hDst = open("./gc_lang/"+sLang+"/perf_memo.txt", "a", encoding="utf-8", newline="\n") if xArgs.perf_memo else None tests.perf(sVersion, hDst) # Firefox if xArgs.firefox: with helpers.cd("_build/xpi/"+sLang): os.system('jpm run -b "' + dVars['fx_dev_path'] + '"') if xArgs.web_ext: with helpers.cd("_build/webext/"+sLang): os.system(r'web-ext run --firefox="' + dVars['fx_nightly_path'] + '" --browser-console') # Thunderbird if xArgs.thunderbird: |
︙ | ︙ |