Add 17.2.1, 16.7.3, 16.7.4 #64
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/upload-artifact@v3.1.0 | |
with: | |
# A file, directory or wildcard pattern that describes what to upload | |
path: output/** | |