Skip to content

Commit

Permalink
Remove riscv64 support (#9)
Browse files Browse the repository at this point in the history
* Remove riscv64 support

* Remove PR branch requirement

* Changed to double quotes

* Moved event
  • Loading branch information
jaydrogers authored Feb 7, 2023
1 parent fad84f9 commit 665a246
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/publish_docker-images-edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,11 @@ name: Docker Publish (Edge - Pull Request)

on:
pull_request:
branches:
- '!dev'

env:
PR_NUMBER: ${{ github.event.pull_request.number }}

jobs:
build:
uses: ./.github/workflows/service_docker-build-and-publish.yml
with:
tag-prefix: 'edge-${{ env.PR_NUMBER }}-'
tag-prefix: "edge-${{ github.event.pull_request.number }}-"
checkout-type: branch
secrets: inherit
1 change: 0 additions & 1 deletion .github/workflows/service_docker-build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ jobs:
linux/arm/v7
linux/arm64/v8
linux/ppc64le
linux/riscv64
linux/s390x
build-args: |
BASE_OS_IMAGE=${{ matrix.linux-flavor }}:${{ matrix.version }}
Expand Down
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ RUN mkdir -p $S6_DIR; \
arm* ) export S6_ARCH='arm' ;; \
i4* ) export S6_ARCH='i486' ;; \
i6* ) export S6_ARCH='i686' ;; \
riscv64 ) export S6_ARCH='riscv64' ;; \
s390* ) export S6_ARCH='s390x' ;; \
* ) export S6_ARCH='x86_64' ;; \
esac; \
Expand Down

0 comments on commit 665a246

Please sign in to comment.