-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8aeac19
commit 2f386b0
Showing
6 changed files
with
78 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: build | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
release: | ||
types: | ||
- published | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
runs-on: | ||
- "ubuntu-latest" | ||
- "macos-latest" | ||
- "windows-latest" | ||
fail-fast: false | ||
runs-on: ${{ matrix.runs-on }} | ||
steps: | ||
- if: runner.os == 'Linux' | ||
run: sudo apt install -y pkg-config libusb-1.0-0-dev libftdi1-dev libudev-dev | ||
- uses: actions/checkout@v3 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
- run: cargo build --release | ||
- if: runner.os == 'Linux' || runner.os == 'macOS' | ||
run: chmod +x target/release/packetraven | ||
- uses: vimtor/[email protected] | ||
with: | ||
files: target/release/packetraven${{ runner.os == 'Windows' && '.exe' || '' }} | ||
dest: ${{ runner.os }}.zip | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
path: ${{ runner.os }}.zip | ||
- if: (github.event_name == 'release' && github.event.action == 'published') | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
file: ${{ runner.os }}.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "packetraven" | ||
authors = ["Zach Burnett <[email protected]>"] | ||
description = "track high-altitude balloon telemetry from a variety of sources" | ||
version = "4.0.0" | ||
version = "4.0.2" | ||
edition = "2021" | ||
readme = "README.md" | ||
license = "GPL-3.0-or-later" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters