Skip to content

Commit bf1a2a2

Browse files
committed
improve naming in gha workflow
1 parent 5e27fe4 commit bf1a2a2

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

.github/workflows/integration.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ concurrency:
2020

2121
jobs:
2222
build-go:
23+
name: Build Go
2324
runs-on: ubuntu-latest
2425
defaults:
2526
run:
@@ -36,13 +37,14 @@ jobs:
3637
- name: Run build script
3738
run: "./build.sh"
3839

39-
- name: Upload built binaries
40+
- name: Upload Go binary
4041
uses: actions/upload-artifact@v4
4142
with:
4243
name: go
4344
path: go/vault
4445

4546
build-rust:
47+
name: Build Rust and Python wheel
4648
runs-on: ubuntu-latest
4749
steps:
4850
- name: Check out repository
@@ -59,35 +61,31 @@ jobs:
5961
run: "./build.sh"
6062
working-directory: rust
6163

64+
- name: Upload Rust binary
65+
uses: actions/upload-artifact@v4
66+
with:
67+
name: rust
68+
path: rust/vault
69+
6270
- uses: actions/setup-python@v5
6371
with:
6472
python-version: 3.x
6573

6674
- name: Build wheel
6775
uses: PyO3/maturin-action@v1
6876
with:
69-
target: x86_64
7077
args: |
7178
--release
7279
--out dist
7380
--find-interpreter
7481
--manifest-path python-pyo3/Cargo.toml
75-
--zig
76-
sccache: false
77-
manylinux: auto
7882
7983
- name: Upload wheel
8084
uses: actions/upload-artifact@v4
8185
with:
8286
name: python-wheel
8387
path: dist
8488

85-
- name: Upload built binaries
86-
uses: actions/upload-artifact@v4
87-
with:
88-
name: rust
89-
path: rust/vault
90-
9189
tests:
9290
needs: [build-go, build-rust]
9391
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)