From 7783a0294a0d9d4a02053491cda27475e0f44915 Mon Sep 17 00:00:00 2001 From: Tiago Castro Date: Sun, 20 Oct 2024 21:34:45 +0100 Subject: [PATCH] test: test Signed-off-by: Tiago Castro --- .github/workflows/release.yml | 58 +++++++++++++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000..7110a795d --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,58 @@ +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 + arch: 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: Build archive + # shell: bash + # run: | + # # Replace with the name of your binary + # 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 \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 198de005b..37b4d4bf7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"