Skip to content

Remove legacy patches #103

Remove legacy patches

Remove legacy patches #103

Workflow file for this run

name: Buildroot
on: [push]
jobs:
build:
name: Build Swift for Buildroot
strategy:
matrix:
config: ["arm64", "armv7", "armv6", "armv5", "x86_64", "i386", "ppc64le"]
runs-on: ubuntu-latest
container: colemancda/buildroot-swift:swift_${{ matrix.config }}_defconfig
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: |
export SWIFT_BUILDROOT=$GITHUB_WORKSPACE
export DEFCONFIG=swift_${{ matrix.config }}_defconfig
export SWIFT_NATIVE_TOOLS=/workspaces/swift/usr/bin
export SWIFT_LLVM_DIR=/workspaces/llvm
export BUILDROOT_DIR=/workspaces/buildroot
export BUILDROOT_RELEASE=2024.02.9
export DEBIAN_FRONTEND=noninteractive
export DEBCONF_NONINTERACTIVE_SEEN=true
$SWIFT_BUILDROOT/.devcontainer/build-scripts/build.sh
- name: Archive Build artifacts
uses: actions/upload-artifact@v3
with:
name: build-${{ matrix.config }}
path: /workspaces/buildroot/output/images