From f5f0e281b79847faea34e1478405edf89ad27cd2 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Sat, 23 Nov 2019 10:44:55 +1100 Subject: [PATCH] Use make in the dockerfile, skip the test --- .github/workflows/test-suite.yml | 7 ------- Dockerfile | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index afd9d734c3..ec419288b4 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -43,10 +43,3 @@ jobs: - uses: actions/checkout@v1 - name: Build the root Dockerfile run: docker build . - install-ubuntu: - runs-on: ubuntu-latest - needs: cargo-fmt - steps: - - uses: actions/checkout@v1 - - name: Build using the root Makefile - run: make diff --git a/Dockerfile b/Dockerfile index 0bbaa66d94..20ba79202a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ FROM rust:latest COPY . lighthouse -RUN cd lighthouse && cargo install --path lighthouse +RUN cd lighthouse && make