-
-
Notifications
You must be signed in to change notification settings - Fork 26
39 lines (37 loc) · 1.39 KB
/
swift-arm.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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 (Debug)
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
linux-armv7-crosscompile-build:
name: Crosscompile for Linux Armv7
runs-on: ubuntu-latest
container: colemancda/swift-armv7:latest-prebuilt
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Swift Version
run: swift --version
- name: Build (Release)
run: |
cd $SRC_ROOT
export SWIFT_PACKAGE_SRCDIR=$GITHUB_WORKSPACE
export SWIFT_PACKAGE_BUILDDIR=$SWIFT_PACKAGE_SRCDIR/.build
$SRC_ROOT/build-swift-package.sh
- name: Archive Build artifacts
uses: actions/upload-artifact@v3
with:
name: linux-armv7-crosscompile-test
path: .build/*/*.xctest