From 13c80004d4b83154562627bdacae1fb392ae1c8a Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Tue, 31 Oct 2023 18:21:44 +0100 Subject: [PATCH] build: do not setup python The build container already ships the Python toolchain, so there is no need to map the toolchain from the base container. Signed-off-by: Daniel Wagner --- .github/workflows/build.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 382f2372..041a7fd6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,9 +20,6 @@ jobs: image: ghcr.io/igaw/linux-nvme/debian:latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 - with: - python-version: '3.x' - name: build run: | scripts/build.sh -b ${{ matrix.buildtype }} -c ${{ matrix.compiler }} @@ -71,9 +68,6 @@ jobs: image: ghcr.io/igaw/linux-nvme/debian:latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 - with: - python-version: '3.x' - name: build run: | scripts/build.sh -b release -c gcc libdbus @@ -93,9 +87,6 @@ jobs: if: github.ref == 'refs/heads/master' steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 - with: - python-version: '3.x' - name: build run: | scripts/build.sh -b release -c gcc fallback