Updated GitHub CI #226
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Swift ARM | |
on: [push] | |
jobs: | |
macos: | |
name: Baremetal Embedded ARM | |
runs-on: macos-latest | |
steps: | |
- name: Install Swift | |
uses: slashmo/[email protected] | |
with: | |
version: swift-DEVELOPMENT-SNAPSHOT-2024-10-30-a | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Swift Version | |
run: swift --version | |
- name: Build Bluetooth | |
run: swift build --triple armv6m-apple-none-macho --configuration release --verbose -Xswiftc -enable-experimental-feature -Xswiftc Embedded -Xswiftc -disable-stack-protector -Xcc -D__MACH__ -Xcc -ffreestanding -Xcc -mcpu=cortex-m0plus -Xcc -mthumb --target Bluetooth | |
- name: Build BluetoothGAP | |
run: swift build --triple armv6m-apple-none-macho --configuration release --verbose -Xswiftc -enable-experimental-feature -Xswiftc Embedded -Xswiftc -disable-stack-protector -Xcc -D__MACH__ -Xcc -ffreestanding -Xcc -mcpu=cortex-m0plus -Xcc -mthumb --target BluetoothGAP |