diff options
author | 2023-09-14 23:27:37 -0700 | |
---|---|---|
committer | 2023-09-14 23:27:37 -0700 | |
commit | c5e8271cdce2e8c2badb517740f4fde7fd8c0a44 (patch) | |
tree | 157dd461470b4c4f83a0d733c93c16198ac0688e | |
parent | da7db2230f1710d5bcb479df26c3742fac6baa0e (diff) | |
download | bun-c5e8271cdce2e8c2badb517740f4fde7fd8c0a44.tar.gz bun-c5e8271cdce2e8c2badb517740f4fde7fd8c0a44.tar.zst bun-c5e8271cdce2e8c2badb517740f4fde7fd8c0a44.zip |
[build] --force on git submodule update
-rw-r--r-- | .github/workflows/bun-mac-aarch64.yml | 4 | ||||
-rw-r--r-- | .github/workflows/bun-mac-x64-baseline.yml | 4 | ||||
-rw-r--r-- | .github/workflows/bun-mac-x64.yml | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/bun-mac-aarch64.yml b/.github/workflows/bun-mac-aarch64.yml index c13007167..0e53c0f6b 100644 --- a/.github/workflows/bun-mac-aarch64.yml +++ b/.github/workflows/bun-mac-aarch64.yml @@ -159,7 +159,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Checkout submodules - run: git submodule update --init --recursive --depth=1 --progress -j $(sysctl -n hw.ncpu) + run: git submodule update --init --recursive --depth=1 --progress -j $(sysctl -n hw.ncpu) --force - name: Install dependencies env: CPU_TARGET: ${{ matrix.cpu }} @@ -277,7 +277,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Checkout submodules - run: git submodule update --init --recursive --depth=1 --progress -j $(sysctl -n hw.ncpu) + run: git submodule update --init --recursive --depth=1 --progress -j $(sysctl -n hw.ncpu) --force - name: Install dependencies env: CPU_TARGET: ${{ matrix.cpu }} diff --git a/.github/workflows/bun-mac-x64-baseline.yml b/.github/workflows/bun-mac-x64-baseline.yml index b8a5aeacc..3191aecce 100644 --- a/.github/workflows/bun-mac-x64-baseline.yml +++ b/.github/workflows/bun-mac-x64-baseline.yml @@ -159,7 +159,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Checkout submodules - run: git submodule update --init --recursive --depth=1 --progress -j $(sysctl -n hw.ncpu) + run: git submodule update --init --recursive --depth=1 --progress -j $(sysctl -n hw.ncpu) --force - name: Install dependencies env: CPU_TARGET: ${{ matrix.cpu }} @@ -278,7 +278,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Checkout submodules - run: git submodule update --init --recursive --depth=1 --progress -j $(sysctl -n hw.ncpu) + run: git submodule update --init --recursive --depth=1 --progress -j $(sysctl -n hw.ncpu) --force - name: Install dependencies env: CPU_TARGET: ${{ matrix.cpu }} diff --git a/.github/workflows/bun-mac-x64.yml b/.github/workflows/bun-mac-x64.yml index 3b4e3c450..b0630ff5b 100644 --- a/.github/workflows/bun-mac-x64.yml +++ b/.github/workflows/bun-mac-x64.yml @@ -159,7 +159,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Checkout submodules - run: git submodule update --init --recursive --depth=1 --progress -j $(sysctl -n hw.ncpu) + run: git submodule update --init --recursive --depth=1 --progress -j $(sysctl -n hw.ncpu) --force - name: Install dependencies env: CPU_TARGET: ${{ matrix.cpu }} @@ -280,7 +280,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Checkout submodules - run: git submodule update --init --recursive --depth=1 --progress -j $(sysctl -n hw.ncpu) + run: git submodule update --init --recursive --depth=1 --progress -j $(sysctl -n hw.ncpu) --force - name: Install dependencies env: CPU_TARGET: ${{ matrix.cpu }} |