File tree Expand file tree Collapse file tree 3 files changed +15
-13
lines changed Expand file tree Collapse file tree 3 files changed +15
-13
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,13 @@ jobs:
13
13
fail-fast : false
14
14
matrix :
15
15
image :
16
- - swift:5.5.0-focal
16
+ - swift:5.5.3-xenial
17
17
- swift:5.6.1-bionic
18
+ - swift:5.7.2-focal
18
19
container : ${{ matrix.image }}
19
20
steps :
20
21
- name : Checkout Repository
21
- uses : actions/checkout@v2
22
+ uses : actions/checkout@v3
22
23
- name : Build Swift Debug Package
23
24
run : swift build -c debug
24
25
- name : Build Swift Release Package
@@ -27,11 +28,11 @@ jobs:
27
28
runs-on : macos-latest
28
29
steps :
29
30
- name : Select latest available Xcode
30
- uses : maxim-lobanov/setup-xcode@v1.2 .1
31
+ uses : maxim-lobanov/setup-xcode@v1.5 .1
31
32
with :
32
- xcode-version : 13
33
+ xcode-version : 13.2.1
33
34
- name : Checkout Repository
34
- uses : actions/checkout@v2
35
+ uses : actions/checkout@v3
35
36
- name : Build Swift Debug Package
36
37
run : swift build -c debug
37
38
- name : Build Swift Release Package
Original file line number Diff line number Diff line change @@ -7,11 +7,12 @@ SWIFT_BUILD_DIR=.build
7
7
CONFIGURATION =release
8
8
9
9
# docker config
10
- SWIFT_BUILD_IMAGE ="swift:5.3.1"
11
- # SWIFT_BUILD_IMAGE="swift:5.1.3"
12
- # SWIFT_BUILD_IMAGE="swift:5.0.3"
10
+ # SWIFT_BUILD_IMAGE="swift:5.7.2"
11
+ SWIFT_BUILD_IMAGE ="helje5/arm64v8-swift-dev:5.5.3"
13
12
DOCKER_BUILD_DIR =".docker.build"
14
- SWIFT_DOCKER_BUILD_DIR ="$(DOCKER_BUILD_DIR ) /x86_64-unknown-linux/$(CONFIGURATION ) "
13
+ DOCKER_PLATFORM =aarch64
14
+ # DOCKER_PLATFORM="x86_64"
15
+ SWIFT_DOCKER_BUILD_DIR ="$(DOCKER_BUILD_DIR ) /$(DOCKER_PLATFORM ) -unknown-linux/$(CONFIGURATION ) "
15
16
DOCKER_BUILD_PRODUCT ="$(DOCKER_BUILD_DIR ) /$(TOOL_NAME ) "
16
17
17
18
XENIAL_DOCKER_IMAGE =swiftlang/swift:nightly-5.3-xenial
Original file line number Diff line number Diff line change 1
- // swift-tools-version:5.4
1
+ // swift-tools-version:5.5
2
2
3
3
import PackageDescription
4
4
@@ -25,11 +25,11 @@ let package = Package(
25
25
// A lot of packages for demonstration purposes, only add what you
26
26
// actually need in your own project.
27
27
. package ( url: " https://github.com/Macro-swift/Macro.git " ,
28
- from: " 0.9 .0" ) ,
28
+ from: " 1.0 .0" ) ,
29
29
. package ( url: " https://github.com/Macro-swift/MacroExpress.git " ,
30
- from: " 0.9 .0" ) ,
30
+ from: " 1.0 .0" ) ,
31
31
. package ( url: " https://github.com/Macro-swift/MacroLambda.git " ,
32
- from: " 0.4.1 " ) ,
32
+ from: " 0.5.0 " ) ,
33
33
. package ( url: " https://github.com/AlwaysRightInstitute/cows " ,
34
34
from: " 1.0.10 " )
35
35
] ,
You can’t perform that action at this time.
0 commit comments