summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-09-11 15:35:07 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-09-11 15:35:07 +0200
commitd7ba64465303c7accea501ab8bd3f1a870277e07 (patch)
tree5e03a02850ffb9c6e6049c31970179595abd0b45 /.github/workflows
parentc77a6bd60a5e417315b592f097fd49a6ffca7203 (diff)
parent442381ae30e952f1367867488543b8ac2900403d (diff)
downloadmullvadvpn-d7ba64465303c7accea501ab8bd3f1a870277e07.tar.xz
mullvadvpn-d7ba64465303c7accea501ab8bd3f1a870277e07.zip
Merge branch 'refactor-split-tunneling'
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/desktop-e2e.yml4
-rw-r--r--.github/workflows/downloader.yml5
-rw-r--r--.github/workflows/frontend.yml6
3 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/desktop-e2e.yml b/.github/workflows/desktop-e2e.yml
index 9b4bb92201..72f457243e 100644
--- a/.github/workflows/desktop-e2e.yml
+++ b/.github/workflows/desktop-e2e.yml
@@ -317,6 +317,10 @@ jobs:
!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/main'
runs-on: windows-latest
steps:
+ # By default, the longest path a filename can have in git on Windows is 260 character.
+ - name: Set git config for long paths
+ run: |
+ git config --system core.longpaths true
- name: Checkout repository
uses: actions/checkout@v4
- name: Checkout submodules
diff --git a/.github/workflows/downloader.yml b/.github/workflows/downloader.yml
index 841c1f5d6b..631a1bceeb 100644
--- a/.github/workflows/downloader.yml
+++ b/.github/workflows/downloader.yml
@@ -40,6 +40,11 @@ jobs:
# You should think twice before increasing this limit.
MAX_BINARY_SIZE: 2621440
steps:
+ # By default, the longest path a filename can have in git on Windows is 260 character.
+ - name: Set git config for long paths
+ run: |
+ git config --system core.longpaths true
+
- name: Checkout repository
uses: actions/checkout@v4
diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml
index 25fb01f3dd..a1c648d358 100644
--- a/.github/workflows/frontend.yml
+++ b/.github/workflows/frontend.yml
@@ -18,6 +18,12 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
+ # By default, the longest path a filename can have in git on Windows is 260 character.
+ - name: Set git config for long paths
+ if: runner.os == 'Windows'
+ run: |
+ git config --system core.longpaths true
+
- name: Checkout repository
uses: actions/checkout@v4