Skip to content

Commit

Permalink
Add rust env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
jbearer committed Apr 2, 2024
1 parent 353723c commit 6ee64d7
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
runs-on: ubuntu-latest
env:
RUST_LOG: info
RUSTFLAGS: "--cfg async_executor_impl=\"async-std\" --cfg async_channel_impl=\"async-std\""
steps:
- uses: actions/checkout@v4
name: Checkout Repository
Expand All @@ -42,6 +43,7 @@ jobs:
runs-on: ubuntu-latest
env:
RUST_LOG: info
RUSTFLAGS: "--cfg async_executor_impl=\"async-std\" --cfg async_channel_impl=\"async-std\""
steps:
- uses: actions/checkout@v4
name: Checkout Repository
Expand All @@ -56,6 +58,7 @@ jobs:
runs-on: windows-2022
env:
RUST_LOG: info
RUSTFLAGS: "--cfg async_executor_impl=\"async-std\" --cfg async_channel_impl=\"async-std\""
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand All @@ -77,6 +80,7 @@ jobs:
runs-on: ubuntu-latest
env:
RUST_LOG: info
RUSTFLAGS: "--cfg async_executor_impl=\"async-std\" --cfg async_channel_impl=\"async-std\""
steps:
- uses: actions/checkout@v4
name: Checkout Repository
Expand All @@ -95,6 +99,7 @@ jobs:
runs-on: ubuntu-latest
env:
RUST_LOG: info
RUSTFLAGS: "--cfg async_executor_impl=\"async-std\" --cfg async_channel_impl=\"async-std\""
steps:
- uses: actions/checkout@v4
name: Checkout Repository
Expand All @@ -117,6 +122,9 @@ jobs:

semver-check:
runs-on: ubuntu-latest
env:
RUST_LOG: info
RUSTFLAGS: "--cfg async_executor_impl=\"async-std\" --cfg async_channel_impl=\"async-std\""
steps:
- uses: actions/checkout@v4
name: Checkout Repository
Expand All @@ -136,6 +144,9 @@ jobs:
- docs
- semver-check
runs-on: ubuntu-latest
env:
RUST_LOG: info
RUSTFLAGS: "--cfg async_executor_impl=\"async-std\" --cfg async_channel_impl=\"async-std\""
steps:
- uses: actions/checkout@v4
- uses: katyo/publish-crates@v2
Expand Down

0 comments on commit 6ee64d7

Please sign in to comment.