diff --git a/.github/workflows/CI-unix.yml b/.github/workflows/CI-unix.yml index aa2589c7..506c00bc 100644 --- a/.github/workflows/CI-unix.yml +++ b/.github/workflows/CI-unix.yml @@ -30,6 +30,7 @@ jobs: - name: Build android arm64 run: | $ANDROID_HOME/cmake/3.10.2.4988404/bin/cmake --build build + ls -lh build build-macos: runs-on: macos-10.15 @@ -69,10 +70,9 @@ jobs: cd build-ios cmake .. -GXcode -DCMAKE_SYSTEM_NAME:STRING=iOS -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGNING_ALLOWED:BOOL=NO -DCMAKE_CONFIGURATION_TYPES:STRING=Release - name: Build - continue-on-error: true # XXX: allow failure run: | cmake --build build-ios - ls -lh + ls -lh build-ios build-cross-qemu: runs-on: ubuntu-latest @@ -123,7 +123,7 @@ jobs: - name: Build run: | cmake --build build - ls -lh + ls -lh build - name: Test run: | ${{ matrix.config.qemu }} build/uv_run_tests_a diff --git a/src/unix/process.c b/src/unix/process.c index c8816b85..16ba6c87 100644 --- a/src/unix/process.c +++ b/src/unix/process.c @@ -35,7 +35,7 @@ #include #include -#if defined(__APPLE__) && !TARGET_OS_IPHONE +#if defined(__APPLE__) # include # include # include