From 93293ca9b21b377b41bf40ee0d23e91b31516467 Mon Sep 17 00:00:00 2001 From: Norbert Manthey Date: Wed, 25 Nov 2020 15:32:59 +0100 Subject: [PATCH] workflows: drop docker-build With the added docker-ci.yml workflow, we test whether we can build KTF, as well as whether we can launch it. Consequently, we do not need to test building separately anymore. Signed-off-by: Norbert Manthey --- .github/workflows/docker-build.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/workflows/docker-build.yml diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml deleted file mode 100644 index 3ea08131..00000000 --- a/.github/workflows/docker-build.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Docker Build Test - -on: - push: - branches: [ mainline ] - pull_request: - branches: [ mainline ] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Build the Docker image - run: docker build . -t "ktf:build" -f tools/docker/Dockerfile --build-arg USER_ID=$(id -u) --build-arg GROUP_ID=$(id -g) --build-arg USER=$USER - - name: Run the Docker image - run: docker run -e UNITTEST=1 -v $(pwd):$(pwd) -w $(pwd) "ktf:build" bash -c "make clean && make boot.iso"