From 89f213e9d56c241c38f33b2a981c40c28b24272f Mon Sep 17 00:00:00 2001 From: Alexander Ignition Date: Tue, 9 Nov 2021 18:13:27 +0300 Subject: [PATCH 1/4] release build --- .github/workflows/test.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index caae227..ebc9d19 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,5 +18,5 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Build and test - run: make test + run: make release shell: bash diff --git a/Makefile b/Makefile index f1e5896..35540d2 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ build: swift build release: - swift build -c release --arch arm64 --arch x86_64 + swift build -c release cp ./.build/apple/Products/Release/catbird ./catbird update: From 98a35f726e96092d67a48ea6e9a21fe7cb18e90f Mon Sep 17 00:00:00 2001 From: Alexander Ignition Date: Wed, 10 Nov 2021 10:26:34 +0300 Subject: [PATCH 2/4] Revert "Add support for arm architecture" --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 35540d2..0380edf 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ build: release: swift build -c release - cp ./.build/apple/Products/Release/catbird ./catbird + cp ./.build/x86_64-apple-macosx/release/catbird ./catbird update: swift package update From 401b08cc90f2b514165b38ea56ad5fecba448bb4 Mon Sep 17 00:00:00 2001 From: Alexander Ignition Date: Wed, 10 Nov 2021 10:34:36 +0300 Subject: [PATCH 3/4] Revert "Revert "Add support for arm architecture"" This reverts commit 98a35f726e96092d67a48ea6e9a21fe7cb18e90f. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0380edf..35540d2 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ build: release: swift build -c release - cp ./.build/x86_64-apple-macosx/release/catbird ./catbird + cp ./.build/apple/Products/Release/catbird ./catbird update: swift package update From 953d1b037e771f795bced5f0165474ccaaaef7f2 Mon Sep 17 00:00:00 2001 From: Alexander Ignition Date: Wed, 10 Nov 2021 10:35:26 +0300 Subject: [PATCH 4/4] Update Makefile arm64 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 35540d2..f1e5896 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ build: swift build release: - swift build -c release + swift build -c release --arch arm64 --arch x86_64 cp ./.build/apple/Products/Release/catbird ./catbird update: