diff options
author | Melody Horn <melody@boringcactus.com> | 2021-04-01 23:36:14 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-04-01 23:36:14 -0600 |
commit | 0793cbaa213c8237a3b916b368a13727e9b643ca (patch) | |
tree | 31e26a5a039a4862cdae46df34bc8b87211b7a29 /.milli-ci/Dockerfile | |
parent | d12f9f563968ea8471b4929936ac4f8553810428 (diff) | |
download | makers-0793cbaa213c8237a3b916b368a13727e9b643ca.tar.gz makers-0793cbaa213c8237a3b916b368a13727e9b643ca.zip |
use someone else's CI since i'm not rolling my own anytime soon
Diffstat (limited to '.milli-ci/Dockerfile')
-rw-r--r-- | .milli-ci/Dockerfile | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/.milli-ci/Dockerfile b/.milli-ci/Dockerfile deleted file mode 100644 index b85473a..0000000 --- a/.milli-ci/Dockerfile +++ /dev/null @@ -1,14 +0,0 @@ -FROM rust:latest -RUN rustup component add clippy rustfmt -WORKDIR /usr/src/makers -COPY Cargo.* . -RUN mkdir src -RUN echo "fn main() {}" > src/main.rs -RUN cargo check -RUN cargo test -RUN cargo build -RUN rm src/main.rs -COPY . . -RUN touch src/main.rs -RUN chmod +x .milli-ci/test.sh -CMD [".milli-ci/test.sh"] |