-
Notifications
You must be signed in to change notification settings - Fork 62
47 lines (47 loc) · 1.16 KB
/
cargo-package.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: cargo package
on:
push:
paths:
- 'Cargo.toml'
- 'Cargo.lock'
- 'git-core'
- '.github/workflows/cargo-package.yml'
pull_request:
paths:
- 'Cargo.toml'
- 'Cargo.lock'
- 'git-core'
- '.github/workflows/cargo-package.yml'
jobs:
package:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
toolchain: [1.78.0]
include:
- os: windows-latest
toolchain: 1.78.0-x86_64-pc-windows-gnu
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- uses: msys2/setup-msys2@v2
with:
release: false
update: false
msystem: MINGW64
install: >-
mingw-w64-x86_64-gcc
mingw-w64-x86_64-make
patch
if: runner.os == 'Windows'
- name: Update PATH
run: |
(Resolve-Path c:/msys64/mingw64/bin).Path >> $Env:GITHUB_PATH
if: runner.os == 'Windows'
- run: cargo package