Skip to content

Commit 1d09674

Browse files
committed
dbg: inspect again
1 parent 254d6d4 commit 1d09674

1 file changed

Lines changed: 33 additions & 16 deletions

File tree

.github/workflows/test.yaml

Lines changed: 33 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,6 @@ jobs:
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-
3024
- name: Cache
3125
uses: actions/cache@v4
3226
timeout-minutes: 1
@@ -49,17 +43,40 @@ jobs:
4943
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > $installer
5044
bash $installer --default-toolchain $(cat rust-toolchain) -y
5145
52-
- name: Test (dev)
46+
# - name: Test (dev)
47+
# shell: bash
48+
# env:
49+
# FMT: 'false'
50+
# LINT: 'false'
51+
# DOC: 'true'
52+
# BUILD: 'true'
53+
# TEST: 'true'
54+
# BUILD_FLAGS: '--locked'
55+
# TEST_FLAGS: '--no-fail-fast'
56+
# run: ./test.sh
57+
58+
- name: Simple test
59+
shell: bash
60+
run: cargo test --no-default-features
61+
62+
- name: Inspect directories
5363
shell: bash
54-
env:
55-
FMT: 'false'
56-
LINT: 'false'
57-
DOC: 'true'
58-
BUILD: 'true'
59-
TEST: 'true'
60-
BUILD_FLAGS: '--locked'
61-
TEST_FLAGS: '--no-fail-fast'
62-
run: ./test.sh
64+
run: |
65+
echo HOME IS $HOME
66+
ls -lA $HOME
67+
echo
68+
echo
69+
70+
echo CARGO $HOME/.cargo
71+
ls -lA $HOME/.cargo
72+
ls -lA $HOME/.cargo/registry
73+
ls -lA $HOME/.cargo/git
74+
echo
75+
echo
76+
77+
echo TARGET
78+
ls -lA target
79+
ls -lA target/debug
6380
6481
# - name: Test (release)
6582
# shell: bash

0 commit comments

Comments
 (0)