Skip to content

Commit 1deeac7

Browse files
authoredJan 6, 2025··
[ffigen] Disable health check for ffigen (#1858)
1 parent 0f9cb0b commit 1deeac7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed
 

‎.github/workflows/health.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ jobs:
1616
flutter_packages: "pkgs/ffigen,pkgs/jni,pkgs/jnigen,pkgs/objective_c"
1717
ignore_license: "**.g.dart"
1818
ignore_coverage: "**.mock.dart,**.g.dart"
19-
ignore_packages: "pkgs/swiftgen,pkgs/jnigen,pkgs/swift2objc"
19+
# TODO(https://github.com/dart-lang/native/issues/1857): Enable ffigen.
20+
ignore_packages: "pkgs/swiftgen,pkgs/jnigen,pkgs/swift2objc,pkgs/ffigen"
2021
sdk: dev
2122
channel: master
2223
permissions:

‎pkgs/ffigen/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 17.0.0-wip
1+
## 16.1.0-wip
22

33
- Ensure that required symbols are available to FFI even when the final binary
44
is linked with `-dead_strip`.

‎pkgs/ffigen/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# BSD-style license that can be found in the LICENSE file.
44

55
name: ffigen
6-
version: 17.0.0-wip
6+
version: 16.1.0-wip
77
description: >
88
Generator for FFI bindings, using LibClang to parse C, Objective-C, and Swift
99
files.

0 commit comments

Comments
 (0)
Please sign in to comment.