Skip to content

Commit

Permalink
Merge pull request #1136 from google/disable-windows-gnu-2
Browse files Browse the repository at this point in the history
Disable windows GNU
  • Loading branch information
adetaylor authored Jul 20, 2022
2 parents b60c4d0 + 5fcc700 commit cdebaee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ jobs:
- name: macOS
rust: nightly
os: macos
- name: Windows (gnu)
rust: nightly-x86_64-pc-windows-gnu
os: windows
# Windows GNU disabled due to https://github.com/google/autocxx/issues/1134
# - name: Windows (gnu)
# rust: nightly-x86_64-pc-windows-gnu
# os: windows
- name: Windows (msvc)
rust: nightly-x86_64-pc-windows-msvc
os: windows
Expand Down
3 changes: 1 addition & 2 deletions engine/src/conversion/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,7 @@ impl<'a> BridgeConverter<'a> {
// Specifically, let's confirm that the items requested by the user to be
// POD really are POD, and duly mark any dependent types.
// This returns a new list of `Api`s, which will be parameterized with
// the analysis results. It also returns an object which can be used
// by subsequent phases to work out which objects are POD.
// the analysis results.
let analyzed_apis = analyze_pod_apis(apis, self.config)?;
Self::dump_apis("pod analysis", &analyzed_apis);
let analyzed_apis = replace_hopeless_typedef_targets(self.config, analyzed_apis);
Expand Down

0 comments on commit cdebaee

Please sign in to comment.