File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -63,20 +63,25 @@ jobs:
63
63
matrix :
64
64
dry : [true, false]
65
65
repo :
66
- - name : " chipflow-examples"
66
+ - name : " ChipFlow/ chipflow-examples"
67
67
design : " minimal"
68
- - name : " chipflow-test-socs"
68
+ - name : " ChipFlow/ chipflow-test-socs"
69
69
design : " sram"
70
70
env :
71
71
DRY : ${{ matrix.dry && '--dry-run' || '' }}
72
72
IS_DRY : ${{ matrix.dry && '(dry run)' || '' }}
73
73
name : ${{ matrix.dry && 'Test Submit - Dry run' || 'Test submit' }}
74
74
75
75
steps :
76
+ - name : Check out source code
77
+ uses : actions/checkout@v4
78
+ with :
79
+ path : ${{ github.repo }}
80
+
76
81
- name : Check out ${{ matrix.repo.name }}
77
82
uses : actions/checkout@v4
78
83
with :
79
- repository : ChipFlow/ ${{ matrix.repo.name }}
84
+ repository : ${{ matrix.repo.name }}
80
85
fetch-depth : 0
81
86
path : ${{ matrix.repo.name }}
82
87
97
102
working-directory : ./${{ matrix.repo.name }}
98
103
if : github.event_name == 'pull_request'
99
104
run : |
100
- pdm run tools/gen_overrides.py ${{github.head_ref}} > overrides.txt
105
+ pdm run ../../${{github.repo}}/ tools/gen_overrides.py ${{github.head_ref}} > overrides.txt
101
106
echo "Generated overrides:"
102
107
cat overrides.txt
103
108
You can’t perform that action at this time.
0 commit comments