Fix some workflow problems
This commit is contained in:
parent
c1324b2943
commit
5e7d5466e8
4 changed files with 2 additions and 35 deletions
|
@ -1,33 +0,0 @@
|
|||
on:
|
||||
push:
|
||||
tags:
|
||||
- v**
|
||||
jobs:
|
||||
build-artifacts:
|
||||
runs-on: docker
|
||||
strategy:
|
||||
matrix:
|
||||
arch:
|
||||
#- x86_64-unknown-linux-musl # for docker
|
||||
- arm-unknown-linux-gnueabihf # for raspberry pi
|
||||
steps:
|
||||
- uses: https://code.forgejo.org/actions/checkout@v3
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
- id: install-dependencies
|
||||
run: |
|
||||
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
||||
shell: bash
|
||||
- id: cargo-build-release
|
||||
run: |
|
||||
source "$HOME/.cargo/env"
|
||||
cross build --target ${{ matrix.arch }} --release
|
||||
shell: bash
|
||||
- uses: https://code.forgejo.org/actions/upload-artifact@v3
|
||||
with:
|
||||
name: emgauwa-core_${{ matrix.arch }}
|
||||
path: ${{ github.workspace }}/target/${{ matrix.arch }}/release/emgauwa-core
|
||||
- uses: https://code.forgejo.org/actions/upload-artifact@v3
|
||||
with:
|
||||
name: emgauwa-controller_${{ matrix.arch }}
|
||||
path: ${{ github.workspace }}/target/${{ matrix.arch }}/release/emgauwa-controller
|
BIN
Cargo.lock
generated
BIN
Cargo.lock
generated
Binary file not shown.
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "emgauwa-controller"
|
||||
version = "0.5.0"
|
||||
version = "0.5.1"
|
||||
edition = "2021"
|
||||
authors = ["Tobias Reisinger <tobias@msrg.cc>"]
|
||||
|
||||
|
|
2
Makefile
2
Makefile
|
@ -12,7 +12,7 @@ clean:
|
|||
rm -f emgauwa-controller.sqlite
|
||||
|
||||
emgauwa-controller_%:
|
||||
$(TOOL) build --target $* --release --bin emgauwa-controller
|
||||
$(TOOL) build --target $* --release
|
||||
mkdir -p out/releases
|
||||
cp target/$*/release/emgauwa-controller out/releases/emgauwa-controller_$*
|
||||
|
||||
|
|
Loading…
Reference in a new issue