Skip to content

Commit

Permalink
Fix CocoaPods (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsim authored Apr 7, 2021
1 parent 67a1b1a commit 22740fe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,15 @@ jobs:
Xcode:
strategy:
matrix:
xcode_version: ['11.2.1', '11.3.1', '11.4.1', '11.5', '11.6', '11.7', '12.0.1', '12.1', '12.2']
xcode_version: ['11.2.1', '11.3.1', '11.4.1', '11.5', '11.6', '11.7', '12.0.1', '12.1', '12.2', '12.3', '12.4']
runs-on: macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app
steps:
- uses: actions/checkout@v2
- run: brew install cmake ninja
- run: swift -version
- run: rm -rf build
- run: cmake -B build -G Ninja -S . -DCMAKE_BUILD_TYPE=Release
- run: cmake --build build
- run: cmake --build build --target install
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@

* Update Bazel config to allow targets to be directly consumed.
[Maxwell Elliott](https://github.com/maxwellE)

* Fix some Bazel integration issues
[Keith Smiley](https://github.com/keith)

##### Bug Fixes

* None.
* Fix build error when integrating Yams using CocoaPods.
[JP Simard](https://github.com/jpsim)

## 4.0.5

Expand Down
6 changes: 1 addition & 5 deletions Sources/CYaml/src/yaml_private.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <yaml.h>
#include "yaml.h"

#include <assert.h>
#include <limits.h>
Expand Down

0 comments on commit 22740fe

Please sign in to comment.