File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121 steps :
2222 - uses : actions/checkout@v4
2323
24+ - name : Inspect cache
25+ shell : bash
26+ run : |
27+ echo HOME IS $HOME
28+ ls -lA $HOME
29+
2430 - name : Cache
2531 uses : actions/cache@v4
2632 timeout-minutes : 1
@@ -55,16 +61,16 @@ jobs:
5561 TEST_FLAGS : ' --no-fail-fast'
5662 run : ./test.sh
5763
58- - name : Test (release)
59- shell : bash
60- env :
61- RUSTFLAGS : ' -D warnings'
62- RUSTDOCFLAGS : ' -D warnings'
63- FMT : ' false'
64- LINT : ' false'
65- DOC : ' true'
66- BUILD : ' true'
67- TEST : ' true'
68- BUILD_FLAGS : ' --locked'
69- TEST_FLAGS : ' --no-fail-fast'
70- run : ./test.sh --release
64+ # - name: Test (release)
65+ # shell: bash
66+ # env:
67+ # RUSTFLAGS: '-D warnings'
68+ # RUSTDOCFLAGS: '-D warnings'
69+ # FMT: 'false'
70+ # LINT: 'false'
71+ # DOC: 'true'
72+ # BUILD: 'true'
73+ # TEST: 'true'
74+ # BUILD_FLAGS: '--locked'
75+ # TEST_FLAGS: '--no-fail-fast'
76+ # run: ./test.sh --release
Original file line number Diff line number Diff line change @@ -26,13 +26,6 @@ use parallel_disk_usage::{
2626#[ cfg( unix) ]
2727use std:: { collections:: BTreeSet , path:: Path } ;
2828
29- #[ cfg( windows) ]
30- fn test_path_join_absolute ( ) {
31- let path = std:: path:: PathBuf :: from ( "." ) . join ( "C:\\ " ) ;
32- dbg ! ( & path) ;
33- assert_eq ! ( path, std:: path:: PathBuf :: from( "C:\\ " ) ) ;
34- }
35-
3629fn stdio ( command : Command ) -> Command {
3730 command
3831 . with_stdin ( Stdio :: null ( ) )
You can’t perform that action at this time.
0 commit comments