Skip to content

Commit

Permalink
add cross-build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mrk-its committed Feb 18, 2024
1 parent ea73965 commit 0274866
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/cross-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: llvm_cross_build
on:
workflow_dispatch:
inputs:
llvm_mos_repo:
description: 'llvm-mos repo'
default: 'llvm-mos/llvm-mos'
type: string
llvm_mos_sdk_repo:
description: 'llvm-mos-sdk repo'
default: 'llvm-mos/llvm-mos-sdk'
type: string
llvm_mos_ref:
description: 'llvm-mos ref'
default: 'main'
type: string
llvm_mos_sdk_ref:
description: 'llvm-mos-sdk ref'
default: 'main'
type: string


jobs:
amd64_image:
uses: ./.github/workflows/cross-build-llvm-mos.yml
with:
arch: amd64
secrets: inherit

arm64_image:
uses: ./.github/workflows/cross-build-llvm-mos.yml
with:
arch: arm64
secrets: inherit

final:
runs-on: ubuntu-latest
needs:
- amd64_image
- arm64_image
steps:
- name: hello
run: echo preparing multi-arch image

0 comments on commit 0274866

Please sign in to comment.