Skip to content

Commit

Permalink
Remove compile_arch types
Browse files Browse the repository at this point in the history
  • Loading branch information
Raunak Bhagat committed Nov 18, 2024
1 parent 65d4f43 commit 421e030
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/build-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,6 @@ name: Build a Daft commit and store the outputted wheel in AWS S3

on:
workflow_dispatch:
inputs:
x86:
description: Build for x86
required: false
default: false
arm:
description: Build for ARM
required: false
default: false
workflow_call:
secrets:
ACTIONS_AWS_ROLE_ARN:
Expand All @@ -28,10 +19,6 @@ on:

jobs:
build-commit:
strategy:
fail-fast: false
matrix:
compile_arch: [x86, arm]
runs-on: buildjet-8vcpu-ubuntu-2004
timeout-minutes: 15 # Remove for ssh debugging
permissions:
Expand All @@ -40,10 +27,6 @@ jobs:
outputs:
wheel: ${{ steps.build_and_upload.outputs.wheel }}
steps:
- if: ${{ (matrix.compile_arch == 'x86') && (github.event.inputs.x86 == 'false') }}
run: exit 0
- if: ${{ (matrix.compile_arch == 'arm') && (github.event.inputs.arm == 'false') }}
run: exit 0
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: us-west-2
Expand Down

0 comments on commit 421e030

Please sign in to comment.