Skip to content

Commit

Permalink
+83
Browse files Browse the repository at this point in the history
  • Loading branch information
SunSerega committed Aug 18, 2024
1 parent dec15f9 commit cc20bb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/upstream pretest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,16 +139,17 @@ jobs:
- name: checkout main repo
uses: actions/checkout@main
with:
ref: ${{ github.event.repository.default_branch }}
path: './core'
fetch-depth: 0

- name: checkout subm fork
uses: actions/checkout@main
with:
repository: ${{ matrix.exec-data.fork_repo }}
ref: 'custom'
path: './fork'
fetch-depth: 0
repository: ${{ matrix.exec-data.fork_repo }}
token: ${{ secrets.POCGL_pretest_upstream_PAT }}

- name: Install OpenCL driver for Intel CPU
Expand Down
4 changes: 2 additions & 2 deletions DataScraping/Reps/PullReps.pas
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
uses System.Diagnostics;

uses '../../Utils/AOtp';
uses '../../Utils/ATask';
uses '../../Utils/AQueue';
uses '../../Utils/CLArgs';

Expand Down Expand Up @@ -91,7 +90,8 @@ procedure PullRep(name, branch, nick: string);
Seq(
new class( nick := 'OpenCL', name := 'OpenCL-Docs', branch := 'custom' ),
new class( nick := 'OpenGL', name := 'OpenGL-Registry', branch := 'custom' )
).TaskForEach(r->PullRep(r.name, r.branch, r.nick)).SyncExec;
).ForEach(r->PullRep(r.name, r.branch, r.nick));
//TODO Not parallel, because that would break git index

except
on e: Exception do ErrOtp(e);
Expand Down

0 comments on commit cc20bb8

Please sign in to comment.