summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCzarek Nakamoto <cyjan@mrcyjanek.net>2025-02-04 16:23:44 +0100
committerCzarek Nakamoto <cyjan@mrcyjanek.net>2025-02-04 16:23:44 +0100
commit7ee2eec8009bfa5d7dfdc5f8055d1b2ca1207ba4 (patch)
treeedda2a8df7a329ef2f09ab839a7baa71af59d35a
parent264de6bdc38a4fd94a39a09c7abbd68b88b880e4 (diff)
add ios simulator to CI
-rw-r--r--.github/workflows/full_check.yaml12
1 files changed, 10 insertions, 2 deletions
diff --git a/.github/workflows/full_check.yaml b/.github/workflows/full_check.yaml
index 20dcbc5..760871c 100644
--- a/.github/workflows/full_check.yaml
+++ b/.github/workflows/full_check.yaml
@@ -289,16 +289,24 @@ jobs:
path: |
contrib/depends/built/*
key: depends-${{ github.job }}-${{ hashFiles('contrib/depends/packages/*.mk') }}
- - name: build
+ - name: build (aarch64-apple-ios)
run: |
./build_single.sh ${{ matrix.coin }} aarch64-apple-ios -j$(sysctl -n hw.logicalcpu)
+
+ - name: build (aarch64-apple-iossimulator)
+ run: |
+ ./build_single.sh ${{ matrix.coin }} aarch64-apple-iossimulator -j$(sysctl -n hw.logicalcpu)
+
+ - name: build (x86_64-apple-iossimulator)
+ run: |
+ ./build_single.sh ${{ matrix.coin }} x86_64-apple-iossimulator -j$(sysctl -n hw.logicalcpu)
- name: rename artifacts
run: |
mkdir release/gh/
for i in release/${{ matrix.coin }}/*
do
cp "$i" "release/gh/${{ matrix.coin }}_$(basename $i)"
- done
+ doneÅ”
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')