Merge pull request #385 from schungx/master

Fix no_index+no_object build.
This commit is contained in:
Stephen Chung
2021-03-31 12:37:17 +08:00
committed by GitHub
22 changed files with 226 additions and 95 deletions

View File

@@ -35,6 +35,7 @@ jobs:
- "--features no_closure"
- "--features unicode-xid-ident"
- "--features sync,no_function,no_float,no_optimize,no_module,no_closure,metadata,serde,unchecked"
- "--features no_function,no_float,no_index,no_object,no_optimize,no_module,no_closure,unchecked"
toolchain: [stable]
experimental: [false]
include:
@@ -111,8 +112,8 @@ jobs:
strategy:
matrix:
include:
- {toolchain: nightly, os: ubuntu-latest, experimental: false, flags: ""}
- {toolchain: nightly, os: windows-latest, experimental: false, flags: ""}
- {toolchain: nightly, os: ubuntu-latest, experimental: false, flags: "--features metadata"}
- {toolchain: nightly, os: windows-latest, experimental: false, flags: "--features metadata"}
steps:
- name: Checkout
uses: actions/checkout@v2