diff --git a/.github/workflows/dynamic-labels.yml b/.github/workflows/dynamic-labels.yml index d5dc7122b..6b8bc94f2 100644 --- a/.github/workflows/dynamic-labels.yml +++ b/.github/workflows/dynamic-labels.yml @@ -94,6 +94,7 @@ jobs: dist/bin/search_memory_index --data_type float --dist_fn l2 --fail_if_recall_below 70 --index_path_prefix data/index_rand_ins_del.after-concurrent-delete-del2500-7500 --result_path res_stream --query_file data/rand_float_10D_1K_norm1.0.bin --gt_file data/gt100_rand_random10D_1K -K 10 -L 20 40 60 80 100 -T 64 - name: upload data and bin + if: success() || failure() uses: actions/upload-artifact@v4 with: name: dynamic-labels-${{matrix.os}} diff --git a/.github/workflows/dynamic.yml b/.github/workflows/dynamic.yml index edd691ef7..a86770076 100644 --- a/.github/workflows/dynamic.yml +++ b/.github/workflows/dynamic.yml @@ -23,6 +23,14 @@ jobs: with: fetch-depth: 1 submodules: true + - name: Configure Windows to Generate Crash Dumps + if: ${{ runner.os == 'Windows' }} + run: | + reg add HKLM\\SOFTWARE\\Microsoft\\Windows\\Windows\ Error\ Reporting\\LocalDumps //f + reg add HKLM\\SOFTWARE\\Microsoft\\Windows\\Windows\ Error\ Reporting\\LocalDumps //v DumpFolder //t REG_EXPAND_SZ //d "./dist" //f + reg add HKLM\\SOFTWARE\\Microsoft\\Windows\\Windows\ Error\ Reporting\\LocalDumps" //v DumpCount //t REG_DWORD //d 10 //f + reg add HKLM\\SOFTWARE\\Microsoft\\Windows\\Windows\ Error\ Reporting\\LocalDumps" //v DumpType //t REG_DWORD //d 2 //f + - name: DiskANN Build CLI Applications uses: ./.github/actions/build @@ -67,6 +75,7 @@ jobs: dist/bin/search_memory_index --data_type uint8 --dist_fn l2 --fail_if_recall_below 70 --index_path_prefix data/index_ins_del.after-concurrent-delete-del2500-7500 --result_path data/res_ins_del --query_file data/rand_uint8_10D_1K_norm50.0.bin --gt_file data/gt100_random10D_10K-conc-2500-7500 -K 10 -L 20 40 60 80 100 -T 8 --dynamic true --tags 1 - name: upload data and bin + if: success() || failure() uses: actions/upload-artifact@v4 with: name: dynamic-${{matrix.os}}