Skip to content

Commit

Permalink
chat
Browse files Browse the repository at this point in the history
  • Loading branch information
amirbilu committed Jul 6, 2023
1 parent 970bc96 commit ecd3325
Showing 1 changed file with 17 additions and 12 deletions.
29 changes: 17 additions & 12 deletions .github/workflows/chat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,22 @@ jobs:

strategy:
matrix:
target: [x86_64-unknown-linux-musl, x86_64-apple-darwin, x86_64-pc-windows-gnu,i686-pc-windows-gnu]
target:
[
x86_64-unknown-linux-musl,
x86_64-pc-windows-gnu,
i686-pc-windows-gnu,
]

steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.70.0
target: ${{ matrix.target }}
- uses: ClementTsang/[email protected]
with:
command: build
args: --release --target=${{ matrix.target }}
use-cross: true
directory: "./chat"
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.70.0
target: ${{ matrix.target }}
- uses: ClementTsang/[email protected]
with:
command: build
args: --release --target=${{ matrix.target }}
use-cross: true
directory: "./chat"

0 comments on commit ecd3325

Please sign in to comment.