From a8fdbfed1a4e3f00d1059935f65303fdfc6a96dd Mon Sep 17 00:00:00 2001 From: link2xt Date: Thu, 4 Apr 2024 12:17:12 +0000 Subject: [PATCH] Add CI --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..f3c7dad87 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,15 @@ +name: CI +on: + push: + +jobs: + build: + runs-on: macos-14 + steps: + - uses: actions/checkout@v4 + with: + submodules: true + show-progress: false + - run: sudo xcode-select --switch /Applications/Xcode_15.3.app/Contents/Developer + - run: cargo install cargo-lipo + - run: set -o pipefail && xcodebuild -workspace deltachat-ios.xcworkspace -scheme deltachat-ios -destination "platform=iOS Simulator,name=iPhone SE (3rd generation)" | xcbeautify --renderer github-actions