File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,11 +26,11 @@ jobs:
2626 - name : Clone duvet repository
2727 run : git clone https://github.com/awslabs/duvet.git /tmp/duvet
2828
29- - name : Build duvet assets
30- run : cd /tmp/duvet && cargo xtask build
31-
32- - name : Install duvet
33- run : cd /tmp/duvet && cargo install --path ./duvet
29+ - name : Build and install duvet
30+ run : |
31+ cd /tmp/duvet
32+ cargo xtask build
33+ cargo install --path ./duvet
3434
3535 - name : Run duvet
3636 if : always()
Original file line number Diff line number Diff line change @@ -70,8 +70,10 @@ Until the latest version of Duvet is release
7070
7171``` bash
7272 git clone https://github.com/awslabs/duvet.git /tmp/duvet
73- cd /tmp/duvet && cargo xtask build
73+ pushd /tmp/duvet
74+ cargo xtask build
7475 cargo install --path ./duvet
76+ popd rm -rf /tmp/duvet
7577```
7678
7779Inside each test server directory there is a ` .duvet ` directory that contains a ` config.toml ` .
You can’t perform that action at this time.
0 commit comments