From 0fe25373d7a4919fd81372972f4d3e29d36bd352 Mon Sep 17 00:00:00 2001 From: Breadway Date: Mon, 11 May 2026 15:29:08 +0800 Subject: [PATCH] remove CI workflow and update .gitignore to include .github directory --- .github/workflows/ci.yml | 42 ---------------------------------------- .gitignore | 3 ++- 2 files changed, 2 insertions(+), 43 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 7409b04..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: CI - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build-and-test: - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, macos-latest] - rust: [stable] - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v4 - - name: Install Rust - uses: dtolnay/rust-toolchain@v1 - with: - toolchain: ${{ matrix.rust }} - - name: Cargo cache - uses: Swatinem/rust-cache@v2 - with: - workspaces: | - . -> target - - name: Build - run: cargo build --workspace --verbose - - name: Run tests - run: cargo test --workspace --verbose - - name: Build release - run: cargo build --workspace --release - - name: Package artifacts - run: | - mkdir -p dist - tar -czf dist/bread-${{ matrix.os }}.tgz target/release/breadd target/release/bread-cli - - name: Upload artifacts - uses: actions/upload-artifact@v4 - with: - name: bread-${{ matrix.os }} - path: dist/*.tgz diff --git a/.gitignore b/.gitignore index fdd4532..7b178b6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ target/ Overview.md -DAEMON.md \ No newline at end of file +DAEMON.md +.github/ \ No newline at end of file