This repository has been archived by the owner on Jan 23, 2025. It is now read-only.
Add support for 16.7.9 and 10 #75
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
name: JitStreamer | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Ask Clippy to ruin our lives | |
run: cargo clippy -- -D warnings | |
- name: Build them files for x86_64-unknown-linux-gnu | |
run: RUSTFLAGS="-C target-feature=+crt-static" cargo build --target x86_64-unknown-linux-gnu --release --verbose | |
- name: Assemble the files like the Avengers | |
run: mkdir output && mv target/x86_64-unknown-linux-gnu/release/jit_streamer output/jit_streamer-x86_64-unknown-linux-gnu && mv target/x86_64-unknown-linux-gnu/release/pair output/pair-x86_64-unknown-linux-gnu | |
- name: Yeet them to the cloud | |
uses: actions/[email protected] | |
with: | |
# A file, directory or wildcard pattern that describes what to upload | |
path: output/** | |