Skip to content

Commit 0faf236

Browse files
committed
ci: continue-on-error set to false
# feat: (new feature for the user, not a new feature for build script) # fix: (bug fix for the user, not a fix to a build script) # docs: (changes to the documentation) # style: (formatting, missing semi colons, etc; no production code change) # perf: (performance adjustments) # refactor: (refactoring production code, no logical changes eg. renaming a variable) # test: (adding missing tests, refactoring tests; no production code change) # chore: (updating grunt tasks etc; no production code change) # ci: (ci configuration changes) # build: (build configuration changes) # # fixing a build failure should have the same tag as the tag used to submit the code we are fixing
1 parent 5cdab63 commit 0faf236

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/build-test-all.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ jobs:
5555
- name: Build
5656
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
5757
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}
58-
continue-on-error: true
58+
continue-on-error: false # set to true if posting logs (next step) is required for debugging
5959

60-
- name: Archive production artifacts
61-
uses: actions/upload-artifact@v4
62-
with:
63-
name: extra-logs
64-
path: |
65-
./**/*.log
66-
retention-days: 1
60+
# - name: Archive production artifacts
61+
# uses: actions/upload-artifact@v4
62+
# with:
63+
# name: extra-logs
64+
# path: |
65+
# ./**/*.log
66+
# retention-days: 1
6767

6868
#- name: Show log
6969
# run: cat /home/runner/work/blackcat/blackcat/build/decimal_for_cpp-prefix/src/decimal_for_cpp-stamp/decimal_for_cpp-configure-Debug.log

0 commit comments

Comments
 (0)