Updated gitignore file to not include cargo or pyproject

This commit is contained in:
brotoskyj
2025-11-05 18:11:20 -05:00
parent 83c7c17fa5
commit c71920d90a
4 changed files with 139 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
name: Build Library
run-name: ${{ gitea.actor }}
on:
push:
paths:
- airlock_libs/**
jobs:
Build Library:
runs-on: debian-stable
steps:
- name: Install Prerequisites
run: |
apt update
apt install curl git python3 pip pkg-config openssl libssl-dev patchelf binutils-mingw-w64-x86-64 mingw-w64 -y
curl https://sh.rustup.rs -sSf | sh -s -- -y
pip install maturin twine --break-system-packages
- name: Pull Repository
run: |
git clone https://brotoskyj:${{ secrets.RUNNER_TOKEN }}@git.racooncity.org/brotoskyj/build_test --branch RustImplementation
- name: Compile Library and Upload
run: |
export TWINE_USERNAME=brotoskyj
export TWINE_PASSWORD=${{ secrets.RUNNER_TOKEN }}
export TWINE_REPOSITORY_URL=https://git.racooncity.org/api/packages/brotoskyj/pypi
. "$HOME/.cargo/env"
rustup target add x86_64-pc-windows-gnu
cd build_test/airlock_libs
cargo clean
cargo fmt
cargo clippy --fix --all-targets --allow-dirty
maturin build --target x86_64-unknown-linux-gnu -i python3.13 --release --strip
maturin build --target x86_64-pc-windows-gnu -i python3.13 --release --strip
python3 -m twine upload target/wheels/*