Skip to content

Commit

Permalink
build: do not setup python
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
igaw committed Oct 31, 2023
1 parent 1f5db47 commit 13c8000
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 13c8000

Please sign in to comment.