Skip to content

Commit

Permalink
test: test
Browse files Browse the repository at this point in the history
Signed-off-by: Tiago Castro <[email protected]>
  • Loading branch information
tiagolobocastro committed Oct 20, 2024
1 parent 73624dd commit da70707
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 1 deletion.
70 changes: 70 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: Publish Bins
on:
push:
branches:
- test

# release:
# types: [published]
jobs:
paperclip-bins:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
- os: ubuntu-latest
target: aarch64-unknown-linux-musl
- os: macos-14
target: x86_64-apple-darwin
- os: macos-13
target: aarch64-apple-darwin
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Build
uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --bins --verbose --release --features "cli" -p paperclip -p paperclip-codegen --target ${{ matrix.target }}
- name: Ls
run: |
ls -l .
ls -l target
ls -l target/release
- uses: actions/upload-artifact@v4
with:
name: paperclip-${{ matrix.target }}
path: |
./target/release/paperclip
./target/release/paperclip-codegen
if-no-files-found: error
# - name: Build archive
# shell: bash
# run: |
# # Replace with the name of your binary
# binary_name="<BINARY_NAME>"

# dirname="$binary_name-${{ env.VERSION }}-${{ matrix.target }}"
# mkdir "$dirname"
# if [ "${{ matrix.os }}" = "windows-latest" ]; then
# mv "target/${{ matrix.target }}/release/$binary_name.exe" "$dirname"
# else
# mv "target/${{ matrix.target }}/release/$binary_name" "$dirname"
# fi

# if [ "${{ matrix.os }}" = "windows-latest" ]; then
# 7z a "$dirname.zip" "$dirname"
# echo "ASSET=$dirname.zip" >> $GITHUB_ENV
# else
# tar -czf "$dirname.tar.gz" "$dirname"
# echo "ASSET=$dirname.tar.gz" >> $GITHUB_ENV
# fi
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ paperclip-macros = { path = "macros", version = "0.7.0", optional = true }
paperclip-codegen = { path = "codegen", version = "0.1.0", optional = true }

env_logger = { version = "0.8", optional = true }
git2 = { version = "0.15", optional = true }
git2 = { version = "0.15", default-features = false, optional = true }
heck = { version = "0.4", optional = true }
http = { version = "0.2", optional = true }
itertools = "0.10"
Expand Down

0 comments on commit da70707

Please sign in to comment.