@@ -87,22 +87,22 @@ jobs:
87
87
exit 1
88
88
esac
89
89
90
- - name : check features
91
- if : ${{ ! inputs.flaky }}
92
- run : |
93
- for i in ${CRATES_LIST//,/ }
94
- do
95
- echo "Checking $i $FEATURES"
96
- if [ $i = "iroh-cli" ]; then
97
- targets="--bins"
98
- else
99
- targets="--lib --bins"
100
- fi
101
- echo cargo check -p $i $FEATURES $targets
102
- cargo check -p $i $FEATURES $targets
103
- done
104
- env :
105
- RUST_LOG : ${{ runner.debug && 'TRACE' || 'DEBUG'}}
90
+ # - name: check features
91
+ # if: ${{ ! inputs.flaky }}
92
+ # run: |
93
+ # for i in ${CRATES_LIST//,/ }
94
+ # do
95
+ # echo "Checking $i $FEATURES"
96
+ # if [ $i = "iroh-cli" ]; then
97
+ # targets="--bins"
98
+ # else
99
+ # targets="--lib --bins"
100
+ # fi
101
+ # echo cargo check -p $i $FEATURES $targets
102
+ # cargo check -p $i $FEATURES $targets
103
+ # done
104
+ # env:
105
+ # RUST_LOG: ${{ runner.debug && 'TRACE' || 'DEBUG'}}
106
106
107
107
# - name: build tests
108
108
# run: |
@@ -120,14 +120,14 @@ jobs:
120
120
RUST_LOG : ${{ runner.debug && 'TRACE' || 'DEBUG'}}
121
121
NEXTEST_EXPERIMENTAL_LIBTEST_JSON : 1
122
122
123
- - name : upload results
124
- if : ${{ failure() && inputs.flaky }}
125
- uses : actions/upload-artifact@v4
126
- with :
127
- name : libtest_run_${{ github.run_number }}-${{ github.run_attempt }}-${{ matrix.name }}_${{ matrix.features }}_${{ matrix.rust }}.json
128
- path : output
129
- retention-days : 45
130
- compression-level : 0
123
+ # - name: upload results
124
+ # if: ${{ failure() && inputs.flaky }}
125
+ # uses: actions/upload-artifact@v4
126
+ # with:
127
+ # name: libtest_run_${{ github.run_number }}-${{ github.run_attempt }}-${{ matrix.name }}_${{ matrix.features }}_${{ matrix.rust }}.json
128
+ # path: output
129
+ # retention-days: 45
130
+ # compression-level: 0
131
131
132
132
# - name: doctests
133
133
# if: ${{ (! inputs.flaky) && matrix.features == 'all' }}
0 commit comments