Skip to content

Commit

Permalink
Set arch explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
doganulus committed Jul 22, 2024
1 parent ee47913 commit 8428424
Showing 1 changed file with 1 addition and 69 deletions.
70 changes: 1 addition & 69 deletions .github/workflows/builder-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,14 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
# - name: Log in to the registry
# uses: docker/login-action@v3
# with:
# registry: ${{ env.REGISTRY }}
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}

- name: Set current date as the version
run: echo "AUTOWARE_VERSION=$(date +'%Y%m%d')" >> $GITHUB_ENV

- name: Buildah Action
id: build-image
uses: redhat-actions/buildah-build@v2
with:
archs: amd64
image: ${{ env.IMAGE_NAME }}
tags: ${{ env.AUTOWARE_VERSION }}-builder latest
layers: true
Expand All @@ -82,63 +74,3 @@ jobs:
# image: ${{ steps.build-image.outputs.image }}
# tags: ${{ steps.build-image.outputs.tags }}
# registry: ${{ env.REGISTRY }}



# - name: Build builder image
# uses: docker/build-push-action@v6
# with:
# context: .
# target: autoware-builder
# build-args: |
# "AUTOWARE_VERSION=${{ env.AUTOWARE_VERSION }}"
# tags: |
# ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.AUTOWARE_VERSION }}-builder
# load: true
# no-cache: true
# cache-to: type=inline

# - name: Build builder w/cache image
# uses: docker/build-push-action@v6
# with:
# context: .
# target: autoware-builder-with-cache
# build-args: |
# "AUTOWARE_VERSION=${{ env.AUTOWARE_VERSION }}"
# tags: |
# ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.AUTOWARE_VERSION }}-builder-with-cache
# load: true
# cache-from: |
# type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.AUTOWARE_VERSION }}-builder
# cache-to: type=inline

# - name: Push builder image
# uses: docker/build-push-action@v6
# with:
# context: .
# target: autoware-builder
# build-args: |
# "AUTOWARE_VERSION=${{ env.AUTOWARE_VERSION }}"
# tags: |
# ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest-builder
# ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.AUTOWARE_VERSION }}-builder
# push: true
# cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.AUTOWARE_VERSION }}-builder
# cache-to: type=inline

# - name: Push builder-with-cache image
# uses: docker/build-push-action@v6
# with:
# context: .
# target: autoware-builder-with-cache
# build-args: |
# "AUTOWARE_VERSION=${{ env.AUTOWARE_VERSION }}"
# tags: |
# ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest-builder-with-cache
# ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.AUTOWARE_VERSION }}-builder-with-cache
# push: true
# cache-from: |
# type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.AUTOWARE_VERSION }}-builder
# type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.AUTOWARE_VERSION }}-builder-with-cache
# cache-to: type=inline

0 comments on commit 8428424

Please sign in to comment.