From f9a0e7deb813efbb5aaa656de19dc14dc25e805d Mon Sep 17 00:00:00 2001 From: Lasan Mahaliyana Date: Tue, 3 Mar 2026 09:48:52 +0530 Subject: [PATCH] removed swift build and test workflows --- .github/workflows/validate.yaml | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml index 7d7d8621..40a51e1d 100644 --- a/.github/workflows/validate.yaml +++ b/.github/workflows/validate.yaml @@ -20,27 +20,6 @@ env: FORCE_COLOR: true jobs: - build-swift: - name: Build Swift - runs-on: macOS-latest - steps: - - name: sync repo - uses: actions/checkout@v6 - with: - submodules: true - - name: Build - run: swift build - - test-swift: - name: Test Swift - runs-on: macOS-latest - steps: - - uses: actions/checkout@v6 - with: - submodules: true - - name: Test - run: swift test - build-linux: name: Build Linux runs-on: ubuntu-latest @@ -48,8 +27,8 @@ jobs: - uses: actions/checkout@v6 - name: Build Connections run: CC=clang-18 CXX=clang-18++ BAZEL_CXXOPTS="-std=c++20" bazel build --@com_google_protobuf//bazel/toolchains:prefer_prebuilt_protoc=true --copt='-DGITHUB_BUILD' //connections:core -# - name: Build Presence -# run: CC=clang-18 CXX=clang-18++ BAZEL_CXXOPTS="-std=c++20" bazel build --@com_google_protobuf//bazel/toolchains:prefer_prebuilt_protoc=true --copt='-DGITHUB_BUILD' //presence + - name: Build Presence + run: CC=clang-18 CXX=clang-18++ BAZEL_CXXOPTS="-std=c++20" bazel build --@com_google_protobuf//bazel/toolchains:prefer_prebuilt_protoc=true --copt='-DGITHUB_BUILD' //presence build-rust-linux: name: Build Rust on Linux