Skip to content

Commit

Permalink
feat: workflow test
Browse files Browse the repository at this point in the history
  • Loading branch information
xilosada committed Jun 10, 2024
1 parent 5348110 commit f483566
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/desktop_artifacts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Build and Upload Binary

on:
push:
branches:
- main
- desktop-build
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64-unknown-linux-gnu, aarch64-unknown-linux-gnu, x86_64-pc-windows-msvc]

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true

- name: Install target for ${{ matrix.target }}
run: rustup target add ${{ matrix.target }}

- name: Install additional dependencies
if: matrix.target == 'x86_64-pc-windows-msvc'
run: |
sudo apt-get update
sudo apt-get install -y mingw-w64
- name: Cache cargo registry
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-registry-

- name: Cache cargo build
uses: actions/cache@v3
with:
path: target
key: ${{ runner.os }}-cargo-build-${{ matrix.target }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-build-

- name: Build the crate
run: cargo build -p calimero-node --release --target ${{ matrix.target }}

- name: Upload binary
uses: actions/upload-artifact@v3
with:
name: calimero-node_${{ matrix.target }}
path: target/${{ matrix.target }}/release/calimero-node*

0 comments on commit f483566

Please sign in to comment.