Skip to content

Commit dafb98a

Browse files
committed
Nice update
1 parent afd449e commit dafb98a

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/duvet.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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()

test-server/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

7779
Inside each test server directory there is a `.duvet` directory that contains a `config.toml`.

0 commit comments

Comments
 (0)