Skip to content

Commit

Permalink
remove host and target epics arch (they come from base images)
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Mar 21, 2024
1 parent ae533f3 commit e0ba95c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 19 deletions.
20 changes: 4 additions & 16 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,15 @@ jobs:
matrix:
epics-target: [RTEMS-beatnik, linux-x86_64] # , linux-aarch64]
include:
- os: ubuntu-latest # everyone is on os-latest
- os: ubuntu-latest # everyone is on ubuntu-latest

- epics-target: RTEMS-beatnik
epics-host: linux-x86_64
extension: -rtems-beatnik
- extension: -rtems-beatnik
platform: linux/amd64

- epics-target: linux-x86_64
epics-host: linux-x86_64
extension: ""
- extension: ""
platform: linux/amd64

# - epics-target: linux-aarch64
# epics-host: linux-aarch64
# # a temporary name until multi-arch is supported
# - # a temporary name until multi-arch is supported
# extension: -native-aarch64
# platform: linux/arm64

Expand Down Expand Up @@ -63,8 +57,6 @@ jobs:
platforms: ${{ matrix.platform }}
target: runtime
build-args: |
EPICS_TARGET_ARCH=${{ matrix.epics-target }}
EPICS_HOST_ARCH=${{ matrix.epics-host }}
IMAGE_EXT=${{ matrix.extension }}
cache-from: type=gha,scope=${{ matrix.epics-target }}-${{ matrix.target }}
cache-to: type=gha,mode=max,scope=${{ matrix.epics-target }}-${{ matrix.target }}
Expand All @@ -84,8 +76,6 @@ jobs:
platforms: ${{ matrix.platform }}
target: developer
build-args: |
EPICS_TARGET_ARCH=${{ matrix.epics-target }}
EPICS_HOST_ARCH=${{ matrix.epics-host }}
IMAGE_EXT=${{ matrix.extension }}
tags: ${{ env.TAG }}-developer:${{ github.ref_name }}
push: true
Expand All @@ -98,8 +88,6 @@ jobs:
platforms: ${{ matrix.platform }}
target: runtime
build-args: |
EPICS_TARGET_ARCH=${{ matrix.epics-target }}
EPICS_HOST_ARCH=${{ matrix.epics-host }}
IMAGE_EXT=${{ matrix.extension }}
tags: ${{ env.TAG }}-runtime:${{ github.ref_name }}
push: true
Expand Down
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
ARG EPICS_TARGET_ARCH=linux-x86_64
ARG EPICS_HOST_ARCH=linux-x86_64
ARG IMAGE_EXT

ARG BASE=7.0.8ec2b5
ARG BASE=7.0.8ec2b6
ARG REGISTRY=ghcr.io/epics-containers
ARG RUNTIME=${REGISTRY}/epics-base${IMAGE_EXT}-runtime:${BASE}
ARG DEVELOPER=${REGISTRY}/epics-base${IMAGE_EXT}-developer:${BASE}
Expand Down

0 comments on commit e0ba95c

Please sign in to comment.