Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 1 addition & 62 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
type: string

env:
XCODE_VERSION: 26.3
XCODE_VERSION: 26.4.1

jobs:
setup_config:
Expand Down Expand Up @@ -60,9 +60,6 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/native/native-build-macos

native_build_ios:
Expand All @@ -71,9 +68,6 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/native/native-build-ios

native_build_windows:
Expand All @@ -82,9 +76,6 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/native/native-build-windows

#### NUGET BUILD ####
Expand All @@ -94,9 +85,6 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/nugets/nugets-windows

#### WEB ASSEMBLY BUILD ####
Expand All @@ -106,9 +94,6 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/other/webassembly-build

#### WEB ASSEMBLY TEST ####
Expand All @@ -118,9 +103,6 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/tests/webassembly/safari

#### TESTS NUGETS ####
Expand All @@ -130,9 +112,6 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/tests/csharp/windows

tests_nuget_macos:
Expand All @@ -141,20 +120,13 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/tests/csharp/macos

tests_nuget_ios:
needs: [nugets, setup_config]
runs-on: "macos-26"
steps:
- uses: actions/checkout@v6
with:
lfs: true

- run: git lfs pull

- name: Set Xcode version
run: |
Expand All @@ -169,9 +141,6 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/tests/csharp/linux

##### SWIFT BUILD #####
Expand All @@ -181,9 +150,6 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/swift

##### KOTLIN BUILD #####
Expand All @@ -193,9 +159,6 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/kotlin/kotlin-windows

kotlin_macos:
Expand All @@ -204,9 +167,6 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/kotlin/kotlin-macos

build_kotlin:
Expand All @@ -215,9 +175,6 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/kotlin/kotlin-linux

tests_nuget_android:
Expand All @@ -226,9 +183,6 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/tests/csharp/android

#### CODE FORMATTING ####
Expand All @@ -252,9 +206,6 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/formatting/csharp

#### PYTHON BUILD ####
Expand All @@ -263,29 +214,20 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/python/build/linux

build_python_macos:
runs-on: "macos-15"

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/python/build/macos

build_python_windows:
runs-on: "windows-2022"

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/python/build/windows

#### PYTHON TEST ####
Expand Down Expand Up @@ -319,7 +261,4 @@ jobs:

steps:
- uses: actions/checkout@v6
with:
lfs: true
- run: git lfs pull
- uses: ./.github/workflows/other/source-publish
Loading