lists.torproject.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

tbb-commits

Thread Start a new thread
Download
Threads by month
  • ----- 2025 -----
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2019 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2018 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2017 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2016 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2015 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2014 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
tbb-commits@lists.torproject.org

October 2024

  • 1 participants
  • 290 discussions
[Git][tpo/applications/tor-browser] Pushed new tag base-browser-115.17.0esr-13.5-1-build1
by Pier Angelo Vendrame (@pierov) 22 Oct '24

22 Oct '24
Pier Angelo Vendrame pushed new tag base-browser-115.17.0esr-13.5-1-build1 at The Tor Project / Applications / Tor Browser -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/tree/base-brow… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser] Pushed new tag tor-browser-115.17.0esr-13.5-1-build1
by Pier Angelo Vendrame (@pierov) 22 Oct '24

22 Oct '24
Pier Angelo Vendrame pushed new tag tor-browser-115.17.0esr-13.5-1-build1 at The Tor Project / Applications / Tor Browser -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/tree/tor-brows… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/mullvad-browser][mullvad-browser-128.4.0esr-14.0-1] 2 commits: fixup! Add CI for Base Browser
by Pier Angelo Vendrame (@pierov) 22 Oct '24

22 Oct '24
Pier Angelo Vendrame pushed to branch mullvad-browser-128.4.0esr-14.0-1 at The Tor Project / Applications / Mullvad Browser Commits: b9ec7075 by Beatriz Rizental at 2024-10-22T16:02:57+02:00 fixup! Add CI for Base Browser Always use tor-browser repository as base for CI clones. This is fine, because both tor-browser and mullvad-browser repositories share most of their history. - - - - - c66fb92a by Beatriz Rizental at 2024-10-22T16:02:57+02:00 fixup! Add CI for Base Browser - - - - - 2 changed files: - .gitlab-ci.yml - .gitlab/ci/lint.yml Changes: ===================================== .gitlab-ci.yml ===================================== @@ -3,7 +3,7 @@ stages: variables: IMAGE_PATH: containers.torproject.org/tpo/applications/tor-browser/base:latest - LOCAL_REPO_PATH: /srv/apps-repos/${CI_PROJECT_NAME}.git + LOCAL_REPO_PATH: /srv/apps-repos/tor-browser.git include: - local: '.gitlab/ci/lint.yml' ===================================== .gitlab/ci/lint.yml ===================================== @@ -22,7 +22,13 @@ - git remote add local "$LOCAL_REPO_PATH" - git fetch --depth 500 local - git remote add origin "$CI_REPOSITORY_URL" - - git fetch origin ${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME} + - | + if [ -z "${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}" ]; then + echo "No branch specified. Stopping the pipeline." + exit 1 + fi + - echo "Fetching from remote branch ${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}" + - git fetch origin "${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}" - git checkout origin/${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME} eslint: @@ -52,7 +58,7 @@ eslint: - 'tools/lint/eslint/eslint-plugin-mozilla/**' - 'tools/lint/eslint/eslint-plugin-spidermonkey-js/**' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') stylelint: extends: .base @@ -70,7 +76,7 @@ stylelint: - '**/.stylelintignore' - '**/*stylelintrc*' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') py-black: extends: .base @@ -89,7 +95,7 @@ py-black: - 'pyproject.toml' - 'tools/lint/black.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') py-ruff: extends: .base @@ -108,7 +114,7 @@ py-ruff: - 'tools/lint/python/ruff.py' - 'tools/lint/python/ruff_requirements.txt' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') yaml: extends: .base @@ -123,7 +129,7 @@ yaml: - '**/*.yaml' - '**/.ymllint' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') shellcheck: extends: .base @@ -137,7 +143,7 @@ shellcheck: - '**/*.sh' - 'tools/lint/shellcheck.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') clang-format: extends: .base @@ -157,7 +163,7 @@ clang-format: - '**/*.mm' - 'tools/lint/clang-format.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') rustfmt: extends: .base @@ -171,7 +177,7 @@ rustfmt: - '**/*.rs' - 'tools/lint/rustfmt.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') fluent-lint: extends: .base @@ -186,7 +192,7 @@ fluent-lint: - 'tools/lint/fluent-lint.yml' - 'tools/lint/fluent-lint/exclusions.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') localization: extends: .base @@ -203,7 +209,7 @@ localization: - 'third_party/python/fluent/**' - 'tools/lint/l10n.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') mingw-capitalization: extends: .base @@ -220,7 +226,7 @@ mingw-capitalization: - '**/*.h' - 'tools/lint/mingw-capitalization.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') mscom-init: extends: .base @@ -237,7 +243,7 @@ mscom-init: - '**/*.h' - 'tools/lint/mscom-init.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') file-whitespace: extends: .base @@ -267,7 +273,7 @@ file-whitespace: - '**/*.java' - 'tools/lint/file-whitespace.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') test-manifest: extends: .base @@ -282,7 +288,7 @@ test-manifest: - 'python/mozlint/**' - 'tools/lint/**' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') trojan-source: extends: .base @@ -301,4 +307,4 @@ trojan-source: - '**/*.rs' - 'tools/lint/trojan-source.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/24… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/24… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-128.4.0esr-14.0-1] 2 commits: fixup! Add CI for Base Browser
by Pier Angelo Vendrame (@pierov) 22 Oct '24

22 Oct '24
Pier Angelo Vendrame pushed to branch base-browser-128.4.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: b9ec7075 by Beatriz Rizental at 2024-10-22T16:02:57+02:00 fixup! Add CI for Base Browser Always use tor-browser repository as base for CI clones. This is fine, because both tor-browser and mullvad-browser repositories share most of their history. - - - - - c66fb92a by Beatriz Rizental at 2024-10-22T16:02:57+02:00 fixup! Add CI for Base Browser - - - - - 2 changed files: - .gitlab-ci.yml - .gitlab/ci/lint.yml Changes: ===================================== .gitlab-ci.yml ===================================== @@ -3,7 +3,7 @@ stages: variables: IMAGE_PATH: containers.torproject.org/tpo/applications/tor-browser/base:latest - LOCAL_REPO_PATH: /srv/apps-repos/${CI_PROJECT_NAME}.git + LOCAL_REPO_PATH: /srv/apps-repos/tor-browser.git include: - local: '.gitlab/ci/lint.yml' ===================================== .gitlab/ci/lint.yml ===================================== @@ -22,7 +22,13 @@ - git remote add local "$LOCAL_REPO_PATH" - git fetch --depth 500 local - git remote add origin "$CI_REPOSITORY_URL" - - git fetch origin ${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME} + - | + if [ -z "${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}" ]; then + echo "No branch specified. Stopping the pipeline." + exit 1 + fi + - echo "Fetching from remote branch ${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}" + - git fetch origin "${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}" - git checkout origin/${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME} eslint: @@ -52,7 +58,7 @@ eslint: - 'tools/lint/eslint/eslint-plugin-mozilla/**' - 'tools/lint/eslint/eslint-plugin-spidermonkey-js/**' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') stylelint: extends: .base @@ -70,7 +76,7 @@ stylelint: - '**/.stylelintignore' - '**/*stylelintrc*' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') py-black: extends: .base @@ -89,7 +95,7 @@ py-black: - 'pyproject.toml' - 'tools/lint/black.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') py-ruff: extends: .base @@ -108,7 +114,7 @@ py-ruff: - 'tools/lint/python/ruff.py' - 'tools/lint/python/ruff_requirements.txt' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') yaml: extends: .base @@ -123,7 +129,7 @@ yaml: - '**/*.yaml' - '**/.ymllint' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') shellcheck: extends: .base @@ -137,7 +143,7 @@ shellcheck: - '**/*.sh' - 'tools/lint/shellcheck.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') clang-format: extends: .base @@ -157,7 +163,7 @@ clang-format: - '**/*.mm' - 'tools/lint/clang-format.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') rustfmt: extends: .base @@ -171,7 +177,7 @@ rustfmt: - '**/*.rs' - 'tools/lint/rustfmt.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') fluent-lint: extends: .base @@ -186,7 +192,7 @@ fluent-lint: - 'tools/lint/fluent-lint.yml' - 'tools/lint/fluent-lint/exclusions.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') localization: extends: .base @@ -203,7 +209,7 @@ localization: - 'third_party/python/fluent/**' - 'tools/lint/l10n.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') mingw-capitalization: extends: .base @@ -220,7 +226,7 @@ mingw-capitalization: - '**/*.h' - 'tools/lint/mingw-capitalization.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') mscom-init: extends: .base @@ -237,7 +243,7 @@ mscom-init: - '**/*.h' - 'tools/lint/mscom-init.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') file-whitespace: extends: .base @@ -267,7 +273,7 @@ file-whitespace: - '**/*.java' - 'tools/lint/file-whitespace.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') test-manifest: extends: .base @@ -282,7 +288,7 @@ test-manifest: - 'python/mozlint/**' - 'tools/lint/**' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') trojan-source: extends: .base @@ -301,4 +307,4 @@ trojan-source: - '**/*.rs' - 'tools/lint/trojan-source.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/24e628… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/24e628… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-128.4.0esr-14.5-1] 2 commits: fixup! Add CI for Base Browser
by Pier Angelo Vendrame (@pierov) 22 Oct '24

22 Oct '24
Pier Angelo Vendrame pushed to branch base-browser-128.4.0esr-14.5-1 at The Tor Project / Applications / Tor Browser Commits: b9ec7075 by Beatriz Rizental at 2024-10-22T16:02:57+02:00 fixup! Add CI for Base Browser Always use tor-browser repository as base for CI clones. This is fine, because both tor-browser and mullvad-browser repositories share most of their history. - - - - - c66fb92a by Beatriz Rizental at 2024-10-22T16:02:57+02:00 fixup! Add CI for Base Browser - - - - - 2 changed files: - .gitlab-ci.yml - .gitlab/ci/lint.yml Changes: ===================================== .gitlab-ci.yml ===================================== @@ -3,7 +3,7 @@ stages: variables: IMAGE_PATH: containers.torproject.org/tpo/applications/tor-browser/base:latest - LOCAL_REPO_PATH: /srv/apps-repos/${CI_PROJECT_NAME}.git + LOCAL_REPO_PATH: /srv/apps-repos/tor-browser.git include: - local: '.gitlab/ci/lint.yml' ===================================== .gitlab/ci/lint.yml ===================================== @@ -22,7 +22,13 @@ - git remote add local "$LOCAL_REPO_PATH" - git fetch --depth 500 local - git remote add origin "$CI_REPOSITORY_URL" - - git fetch origin ${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME} + - | + if [ -z "${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}" ]; then + echo "No branch specified. Stopping the pipeline." + exit 1 + fi + - echo "Fetching from remote branch ${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}" + - git fetch origin "${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}" - git checkout origin/${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME} eslint: @@ -52,7 +58,7 @@ eslint: - 'tools/lint/eslint/eslint-plugin-mozilla/**' - 'tools/lint/eslint/eslint-plugin-spidermonkey-js/**' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') stylelint: extends: .base @@ -70,7 +76,7 @@ stylelint: - '**/.stylelintignore' - '**/*stylelintrc*' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') py-black: extends: .base @@ -89,7 +95,7 @@ py-black: - 'pyproject.toml' - 'tools/lint/black.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') py-ruff: extends: .base @@ -108,7 +114,7 @@ py-ruff: - 'tools/lint/python/ruff.py' - 'tools/lint/python/ruff_requirements.txt' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') yaml: extends: .base @@ -123,7 +129,7 @@ yaml: - '**/*.yaml' - '**/.ymllint' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') shellcheck: extends: .base @@ -137,7 +143,7 @@ shellcheck: - '**/*.sh' - 'tools/lint/shellcheck.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') clang-format: extends: .base @@ -157,7 +163,7 @@ clang-format: - '**/*.mm' - 'tools/lint/clang-format.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') rustfmt: extends: .base @@ -171,7 +177,7 @@ rustfmt: - '**/*.rs' - 'tools/lint/rustfmt.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') fluent-lint: extends: .base @@ -186,7 +192,7 @@ fluent-lint: - 'tools/lint/fluent-lint.yml' - 'tools/lint/fluent-lint/exclusions.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') localization: extends: .base @@ -203,7 +209,7 @@ localization: - 'third_party/python/fluent/**' - 'tools/lint/l10n.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') mingw-capitalization: extends: .base @@ -220,7 +226,7 @@ mingw-capitalization: - '**/*.h' - 'tools/lint/mingw-capitalization.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') mscom-init: extends: .base @@ -237,7 +243,7 @@ mscom-init: - '**/*.h' - 'tools/lint/mscom-init.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') file-whitespace: extends: .base @@ -267,7 +273,7 @@ file-whitespace: - '**/*.java' - 'tools/lint/file-whitespace.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') test-manifest: extends: .base @@ -282,7 +288,7 @@ test-manifest: - 'python/mozlint/**' - 'tools/lint/**' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') trojan-source: extends: .base @@ -301,4 +307,4 @@ trojan-source: - '**/*.rs' - 'tools/lint/trojan-source.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/24e628… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/24e628… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-128.4.0esr-14.0-1] fixup! Add CI for Base Browser
by Pier Angelo Vendrame (@pierov) 22 Oct '24

22 Oct '24
Pier Angelo Vendrame pushed to branch tor-browser-128.4.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: 6cf7a548 by Beatriz Rizental at 2024-10-22T16:01:00+02:00 fixup! Add CI for Base Browser - - - - - 1 changed file: - .gitlab/ci/lint.yml Changes: ===================================== .gitlab/ci/lint.yml ===================================== @@ -22,7 +22,13 @@ - git remote add local "$LOCAL_REPO_PATH" - git fetch --depth 500 local - git remote add origin "$CI_REPOSITORY_URL" - - git fetch origin ${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME} + - | + if [ -z "${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}" ]; then + echo "No branch specified. Stopping the pipeline." + exit 1 + fi + - echo "Fetching from remote branch ${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}" + - git fetch origin "${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}" - git checkout origin/${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME} eslint: @@ -52,7 +58,7 @@ eslint: - 'tools/lint/eslint/eslint-plugin-mozilla/**' - 'tools/lint/eslint/eslint-plugin-spidermonkey-js/**' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') stylelint: extends: .base @@ -70,7 +76,7 @@ stylelint: - '**/.stylelintignore' - '**/*stylelintrc*' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') py-black: extends: .base @@ -89,7 +95,7 @@ py-black: - 'pyproject.toml' - 'tools/lint/black.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') py-ruff: extends: .base @@ -108,7 +114,7 @@ py-ruff: - 'tools/lint/python/ruff.py' - 'tools/lint/python/ruff_requirements.txt' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') yaml: extends: .base @@ -123,7 +129,7 @@ yaml: - '**/*.yaml' - '**/.ymllint' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') shellcheck: extends: .base @@ -137,7 +143,7 @@ shellcheck: - '**/*.sh' - 'tools/lint/shellcheck.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') clang-format: extends: .base @@ -157,7 +163,7 @@ clang-format: - '**/*.mm' - 'tools/lint/clang-format.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') rustfmt: extends: .base @@ -171,7 +177,7 @@ rustfmt: - '**/*.rs' - 'tools/lint/rustfmt.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') fluent-lint: extends: .base @@ -186,7 +192,7 @@ fluent-lint: - 'tools/lint/fluent-lint.yml' - 'tools/lint/fluent-lint/exclusions.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') localization: extends: .base @@ -203,7 +209,7 @@ localization: - 'third_party/python/fluent/**' - 'tools/lint/l10n.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') mingw-capitalization: extends: .base @@ -220,7 +226,7 @@ mingw-capitalization: - '**/*.h' - 'tools/lint/mingw-capitalization.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') mscom-init: extends: .base @@ -237,7 +243,7 @@ mscom-init: - '**/*.h' - 'tools/lint/mscom-init.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') file-whitespace: extends: .base @@ -267,7 +273,7 @@ file-whitespace: - '**/*.java' - 'tools/lint/file-whitespace.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') test-manifest: extends: .base @@ -282,7 +288,7 @@ test-manifest: - 'python/mozlint/**' - 'tools/lint/**' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') trojan-source: extends: .base @@ -301,4 +307,4 @@ trojan-source: - '**/*.rs' - 'tools/lint/trojan-source.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/6cf7a54… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/6cf7a54… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-128.4.0esr-14.5-1] fixup! Add CI for Base Browser
by Pier Angelo Vendrame (@pierov) 22 Oct '24

22 Oct '24
Pier Angelo Vendrame pushed to branch tor-browser-128.4.0esr-14.5-1 at The Tor Project / Applications / Tor Browser Commits: c86d56c2 by Beatriz Rizental at 2024-10-22T16:00:18+02:00 fixup! Add CI for Base Browser Always use tor-browser repository as base for CI clones. This is fine, because both tor-browser and mullvad-browser repositories share most of their history. - - - - - 1 changed file: - .gitlab-ci.yml Changes: ===================================== .gitlab-ci.yml ===================================== @@ -4,7 +4,7 @@ stages: variables: IMAGE_PATH: containers.torproject.org/tpo/applications/tor-browser/base:latest - LOCAL_REPO_PATH: /srv/apps-repos/${CI_PROJECT_NAME}.git + LOCAL_REPO_PATH: /srv/apps-repos/tor-browser.git include: - local: '.gitlab/ci/lint.yml' View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c86d56c… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c86d56c… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-128.4.0esr-14.5-1] fixup! Add CI for Base Browser
by Pier Angelo Vendrame (@pierov) 22 Oct '24

22 Oct '24
Pier Angelo Vendrame pushed to branch tor-browser-128.4.0esr-14.5-1 at The Tor Project / Applications / Tor Browser Commits: 947e6879 by Beatriz Rizental at 2024-10-22T15:46:11+02:00 fixup! Add CI for Base Browser - - - - - 1 changed file: - .gitlab/ci/lint.yml Changes: ===================================== .gitlab/ci/lint.yml ===================================== @@ -22,7 +22,13 @@ - git remote add local "$LOCAL_REPO_PATH" - git fetch --depth 500 local - git remote add origin "$CI_REPOSITORY_URL" - - git fetch origin ${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME} + - | + if [ -z "${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}" ]; then + echo "No branch specified. Stopping the pipeline." + exit 1 + fi + - echo "Fetching from remote branch ${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}" + - git fetch origin "${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}" - git checkout origin/${CI_COMMIT_BRANCH:-$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME} eslint: @@ -52,7 +58,7 @@ eslint: - 'tools/lint/eslint/eslint-plugin-mozilla/**' - 'tools/lint/eslint/eslint-plugin-spidermonkey-js/**' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') stylelint: extends: .base @@ -70,7 +76,7 @@ stylelint: - '**/.stylelintignore' - '**/*stylelintrc*' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') py-black: extends: .base @@ -89,7 +95,7 @@ py-black: - 'pyproject.toml' - 'tools/lint/black.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') py-ruff: extends: .base @@ -108,7 +114,7 @@ py-ruff: - 'tools/lint/python/ruff.py' - 'tools/lint/python/ruff_requirements.txt' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') yaml: extends: .base @@ -123,7 +129,7 @@ yaml: - '**/*.yaml' - '**/.ymllint' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') shellcheck: extends: .base @@ -137,7 +143,7 @@ shellcheck: - '**/*.sh' - 'tools/lint/shellcheck.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') clang-format: extends: .base @@ -157,7 +163,7 @@ clang-format: - '**/*.mm' - 'tools/lint/clang-format.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') rustfmt: extends: .base @@ -171,7 +177,7 @@ rustfmt: - '**/*.rs' - 'tools/lint/rustfmt.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') fluent-lint: extends: .base @@ -186,7 +192,7 @@ fluent-lint: - 'tools/lint/fluent-lint.yml' - 'tools/lint/fluent-lint/exclusions.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') localization: extends: .base @@ -203,7 +209,7 @@ localization: - 'third_party/python/fluent/**' - 'tools/lint/l10n.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') mingw-capitalization: extends: .base @@ -220,7 +226,7 @@ mingw-capitalization: - '**/*.h' - 'tools/lint/mingw-capitalization.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') mscom-init: extends: .base @@ -237,7 +243,7 @@ mscom-init: - '**/*.h' - 'tools/lint/mscom-init.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') file-whitespace: extends: .base @@ -267,7 +273,7 @@ file-whitespace: - '**/*.java' - 'tools/lint/file-whitespace.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') test-manifest: extends: .base @@ -282,7 +288,7 @@ test-manifest: - 'python/mozlint/**' - 'tools/lint/**' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') trojan-source: extends: .base @@ -301,4 +307,4 @@ trojan-source: - '**/*.rs' - 'tools/lint/trojan-source.yml' # Run job whenever a commit is merged to a protected branch - - if: $CI_COMMIT_REF_PROTECTED == 'true' + - if: ($CI_COMMIT_BRANCH && $CI_COMMIT_REF_PROTECTED == 'true') View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/947e687… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/947e687… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-128.4.0esr-14.0-1] fixup! Add CI for Base Browser
by Pier Angelo Vendrame (@pierov) 22 Oct '24

22 Oct '24
Pier Angelo Vendrame pushed to branch tor-browser-128.4.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: 8833dc69 by Beatriz Rizental at 2024-10-22T15:26:28+02:00 fixup! Add CI for Base Browser Always use tor-browser repository as base for CI clones. This is fine, because both tor-browser and mullvad-browser repositories share most of their history. - - - - - 1 changed file: - .gitlab-ci.yml Changes: ===================================== .gitlab-ci.yml ===================================== @@ -4,7 +4,7 @@ stages: variables: IMAGE_PATH: containers.torproject.org/tpo/applications/tor-browser/base:latest - LOCAL_REPO_PATH: /srv/apps-repos/${CI_PROJECT_NAME}.git + LOCAL_REPO_PATH: /srv/apps-repos/tor-browser.git include: - local: '.gitlab/ci/lint.yml' View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/8833dc6… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/8833dc6… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] Bump Firefox version to 128.3.0esr for nightly builds.
by Pier Angelo Vendrame (@pierov) 22 Oct '24

22 Oct '24
Pier Angelo Vendrame pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: f673ec01 by Pier Angelo Vendrame at 2024-10-22T14:58:23+02:00 Bump Firefox version to 128.3.0esr for nightly builds. Also, bump the browser version from 14.0 to 14.5. - - - - - 2 changed files: - projects/firefox/config - projects/geckoview/config Changes: ===================================== projects/firefox/config ===================================== @@ -14,12 +14,12 @@ container: use_container: 1 var: - firefox_platform_version: '128.3.0' + firefox_platform_version: '128.4.0' firefox_version: '[% c("var/firefox_platform_version") %]esr' - browser_series: '14.0' + browser_series: '14.5' browser_rebase: 1 browser_branch: '[% c("var/browser_series") %]-[% c("var/browser_rebase") %]' - browser_build: 4 + browser_build: 1 branding_directory_prefix: 'tb' copyright_year: '[% exec("git show -s --format=%ci").remove("-.*") %]' nightly_updates_publish_dir: '[% c("var/nightly_updates_publish_dir_prefix") %]nightly-[% c("var/osname") %]' @@ -107,7 +107,6 @@ targets: gitlab_project: https://gitlab.torproject.org/tpo/applications/mullvad-browser updater_url: 'https://cdn.mullvad.net/browser/update_responses/update_1/' nightly_updates_publish_dir_prefix: mullvadbrowser- - browser_build: 3 linux-x86_64: var: ===================================== projects/geckoview/config ===================================== @@ -16,12 +16,12 @@ container: build_apk: 1 var: - firefox_platform_version: '128.3.0' + firefox_platform_version: '128.4.0' geckoview_version: '[% c("var/firefox_platform_version") %]esr' - browser_series: '14.0' + browser_series: '14.5' browser_rebase: 1 browser_branch: '[% c("var/browser_series") %]-[% c("var/browser_rebase") %]' - browser_build: 4 + browser_build: 1 copyright_year: '[% exec("git show -s --format=%ci").remove("-.*") %]' gitlab_project: https://gitlab.torproject.org/tpo/applications/tor-browser git_commit: '[% exec("git rev-parse HEAD") %]' View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • ...
  • 29
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.