Compare commits

..

1 Commits

Author SHA1 Message Date
Karim Alweheshy
7fe2a0ea74 remove non yoga search paths 2025-01-21 11:22:33 +01:00
4 changed files with 8 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ inputs:
version:
description: LLVM version to use # Should be kept roughly in sync with arcanist
required: false
default: 18
default: 12
runs:
using: "composite"

View File

@@ -16,7 +16,6 @@ runs:
if: ${{ inputs.toolchain == 'Clang' }}
shell: bash
run: |
sudo apt-get install -y libc++-dev libc++abi-dev
echo "CC=/usr/bin/clang" >> $GITHUB_ENV
echo "CXX=/usr/bin/clang++" >> $GITHUB_ENV
echo "CXXFLAGS=-stdlib=libc++" >> $GITHUB_ENV

View File

@@ -107,5 +107,3 @@ jobs:
- name: clang-format
uses: ./.github/actions/clang-format
with:
directory: yoga

View File

@@ -19,6 +19,13 @@ let package = Package(
.target(
name: "core",
path: ".",
exclude: [
"capture",
"benchmark",
"javascript",
"java",
"tests",
],
sources: [
"yoga"
],