add test on ubuntu badge to README and tiny fixes

This commit is contained in:
Ryo Nakamura
2022-11-06 14:36:02 +09:00
parent 2efffc21f4
commit 15dbb564c8
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
# mscp
[![build on ubuntu](https://github.com/upa/mscp/actions/workflows/build-ubuntu.yml/badge.svg)](https://github.com/upa/mscp/actions/workflows/build-ubuntu.yml) [![build on macOS](https://github.com/upa/mscp/actions/workflows/build-macos.yml/badge.svg)](https://github.com/upa/mscp/actions/workflows/build-macos.yml)
[![build on ubuntu](https://github.com/upa/mscp/actions/workflows/build-ubuntu.yml/badge.svg)](https://github.com/upa/mscp/actions/workflows/build-ubuntu.yml) [![build on macOS](https://github.com/upa/mscp/actions/workflows/build-macos.yml/badge.svg)](https://github.com/upa/mscp/actions/workflows/build-macos.yml) [![test on ubuntu](https://github.com/upa/mscp/actions/workflows/test.yml/badge.svg)](https://github.com/upa/mscp/actions/workflows/test.yml)
`mscp`, a variant of `scp`, copies files over multiple ssh (sftp)

View File

@@ -20,5 +20,5 @@ RUN cd ${mscpdir} \
RUN cd ${mscpdir} \
&& cmake -B build -DBUILD_PKG=1 \
&& cd ${mscpdir}/build \
&&cpack -G RPM CPackConfig.cmake
&& cpack -G RPM CPackConfig.cmake

View File

@@ -25,7 +25,7 @@ cd ..
docker build --rm -t mscp-test -f docker/Dockerfile-test .
docker run --init -it --rm mscp-test bash -c "/usr/sbin/sshd; cd /mscp/build; ctest --verbose"
docker run --init --rm mscp-test bash -c "/usr/sbin/sshd; cd /mscp/build; ctest --verbose"
```
I don't know whether these these are good way.