Update .gitea/workflows/ci.yml
This commit is contained in:
parent
98fa97322b
commit
ae1be04ca5
1 changed files with 6 additions and 6 deletions
|
|
@ -5,7 +5,7 @@ on:
|
|||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
test-amd64:
|
||||
build-amd64:
|
||||
runs-on: [rust-latest, amd64-builder]
|
||||
steps:
|
||||
- name: System Info
|
||||
|
|
@ -22,15 +22,15 @@ jobs:
|
|||
uses: actions/checkout@v5
|
||||
|
||||
- name: Build
|
||||
run: cargo build
|
||||
run: cargo build --release
|
||||
|
||||
- name: Upload
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: servus-amd64
|
||||
path: target/debug/servus
|
||||
path: target/release/servus
|
||||
|
||||
test-arm64:
|
||||
build-arm64:
|
||||
runs-on: [rust-latest, arm64-builder]
|
||||
steps:
|
||||
- name: System Info
|
||||
|
|
@ -47,10 +47,10 @@ jobs:
|
|||
uses: actions/checkout@v5
|
||||
|
||||
- name: Build
|
||||
run: cargo build
|
||||
run: cargo build --release
|
||||
|
||||
- name: Upload
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: servus-arm64
|
||||
path: target/debug/servus
|
||||
path: target/release/servus
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue