Skip to content

Commit

Permalink
+7
Browse files Browse the repository at this point in the history
  • Loading branch information
SunSerega committed Aug 25, 2024
1 parent 0aba049 commit 4cde5e6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/upstream pretest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
sparse-checkout: |
.gitmodules
- name: make exec list
- name: (!) make exec list
id: make_exec_list
run: |
Expand Down Expand Up @@ -152,12 +152,14 @@ jobs:
# - Only need commit messages, not files
if ($core_fetch_specs) {
Write-Host "- Fetching core branches"
Write-Host git fetch --depth=1 --no-tags --filter=tree:0 origin $core_fetch_specs
git fetch --depth=1 --no-tags --filter=tree:0 origin $core_fetch_specs
if (-not $?) { throw "git fetch failed" }
}
foreach ($repo in $submodule_by_repo.Keys) {
if (-not $subm_fetch_specs[$repo]) { continue }
Write-Host "- Fetching branches for $repo"
Write-Host git fetch --depth=1 --no-tags --filter=tree:0 $submodule_by_repo[$repo].fork_url $subm_fetch_specs[$repo]
git fetch --depth=1 --no-tags --filter=tree:0 $submodule_by_repo[$repo].fork_url $subm_fetch_specs[$repo]
if (-not $?) { throw "git fetch failed" }
}
Expand Down Expand Up @@ -305,7 +307,7 @@ jobs:
Invoke-WebRequest -Uri 'https://github.com/SunSerega/pascalabcnet/releases/download/custom-build-tag/PABCNETC.zip' -OutFile 'D:\PABCNETC.zip'
Expand-Archive -Path 'D:\PABCNETC.zip' -DestinationPath 'D:\PABCNETC' -Force
- name: pretest
- name: (!) pretest
run: |
$subm_name = '${{ matrix.exec-data.subm_name }}'
Expand Down Expand Up @@ -427,7 +429,7 @@ jobs:
sparse-checkout-cone-mode: false
sparse-checkout: '<NOTHING>'

- name: remove old pretest branches
- name: (!) remove old pretest branches
run: |
function Split-OrEmpty {
Expand Down

0 comments on commit 4cde5e6

Please sign in to comment.