Skip to content

Commit

Permalink
remove arm
Browse files Browse the repository at this point in the history
will need to do these manually - it goes over 6 hours

Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Dec 16, 2023
1 parent 3fa0981 commit 7120060
Showing 1 changed file with 1 addition and 20 deletions.
21 changes: 1 addition & 20 deletions .github/workflows/build-matrices.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Flux View Build Matrices

on:
# Enable for testing builds for a PR
workflow_dispatch:
pull_request: []
push:
Expand Down Expand Up @@ -47,7 +46,7 @@ jobs:
fail-fast: false
matrix:
result: ${{ fromJson(needs.generate.outputs.dockerbuild_matrix) }}
arch: [linux/amd64, linux/arm64]
arch: [linux/amd64]

if: ${{ needs.generate.outputs.empty_matrix == 'false' }}

Expand All @@ -57,13 +56,6 @@ jobs:
uses: actions/checkout@v4
- uses: actions/setup-go@v3

- name: Add custom buildx ARM builder
if: (matrix.arch == 'linux/arm64')
run: |
docker buildx create --name armbuilder
docker buildx use armbuilder
docker buildx inspect --bootstrap
- name: GHCR Login
if: (github.event_name != 'pull_request')
uses: docker/login-action@v2
Expand All @@ -88,16 +80,6 @@ jobs:
echo "container_name=${container_name}" >> $GITHUB_ENV
echo "container_arch=x86_64" >> $GITHUB_ENV
- name: Set Container name
if: (matrix.arch == 'linux/arm64')
env:
container: ${{ matrix.result.container_name }}
run: |
container_name=$(python .github/container_name.py "${container}" flux-view-arm)
echo "Container name is ${container_name}"
echo "container_name=${container_name}" >> $GITHUB_ENV
echo "container_arch=aarch64" >> $GITHUB_ENV
- name: Pull Docker Layers
run: docker pull ghcr.io/converged-computing/${container_name} || exit 0

Expand Down Expand Up @@ -134,5 +116,4 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
build-args: |
${{ env.build_args }}
ARCH=${{ env.container_arch }}
tags: ${{ env.container_name }}

0 comments on commit 7120060

Please sign in to comment.