6e0a894b58
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://github.com/actions/checkout) | action | patch | `v6.0.2` → `v6.0.3` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v6.0.3`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v603) [Compare Source](https://github.com/actions/checkout/compare/v6.0.2...v6.0.3) - Fix checkout init for SHA-256 repositories by [@​yaananth](https://github.com/yaananth) in [#​2439](https://github.com/actions/checkout/pull/2439) - fix: expand merge commit SHA regex and add SHA-256 test cases by [@​yaananth](https://github.com/yaananth) in [#​2414](https://github.com/actions/checkout/pull/2414) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My41LjQiLCJ1cGRhdGVkSW5WZXIiOiI0My41LjQiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImFjdGlvbiIsImRlcHMiXX0=--> Reviewed-on: #30 Reviewed-by: t.behrendt <2+t.behrendt@noreply.localhost> Co-authored-by: Renovate Bot <renovate@t00n.de> Co-committed-by: Renovate Bot <renovate@t00n.de>
50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
name: Build
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
runner:
|
|
type: string
|
|
default: "linux_amd64"
|
|
arch:
|
|
type: string
|
|
default: "amd64"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on:
|
|
- ubuntu-latest
|
|
- ${{ inputs.runner }}
|
|
steps:
|
|
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
with:
|
|
fetch-depth: 0
|
|
- run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y build-essential cmake zip
|
|
- name: Build
|
|
run: |
|
|
mkdir -p build
|
|
cd build
|
|
cmake ..
|
|
cmake --build .
|
|
- name: Verify binary
|
|
run: |
|
|
test -f build/usbmakroboard && echo "Binary built successfully" || exit 1
|
|
- name: Create zip archive
|
|
run: |
|
|
cd build
|
|
zip usbmakroboard-linux-${{ inputs.arch }}.zip usbmakroboard
|
|
- name: Generate checksum
|
|
run: |
|
|
cd build
|
|
sha256sum usbmakroboard-linux-${{ inputs.arch }}.zip > usbmakroboard-linux-${{ inputs.arch }}.zip.sha256
|
|
- name: Upload artifacts
|
|
uses: ChristopherHX/gitea-upload-artifact@v4
|
|
with:
|
|
name: usbmakroboard-${{ inputs.arch }}
|
|
path: |
|
|
build/usbmakroboard-linux-${{ inputs.arch }}.zip
|
|
build/usbmakroboard-linux-${{ inputs.arch }}.zip.sha256
|
|
retention-days: 1
|