From c40ca2baf3614a78575cab00fd27a8de6aeda1cb Mon Sep 17 00:00:00 2001 From: Andrea Toska Date: Tue, 25 Mar 2025 08:32:23 +0100 Subject: [PATCH] Remove GitHub CI we're on gitlab now lol --- .github/workflows/build.yml | 30 ------------------------------ .github/workflows/stale.yml | 14 -------------- 2 files changed, 44 deletions(-) delete mode 100644 .github/workflows/build.yml delete mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index a1f51b3..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Build - -on: - push: - branches: - - main - pull_request: - branches: - - main - -env: - CARGO_TERM_COLOR: always - -jobs: - build: - runs-on: self-hosted - steps: - - name: Checkout Repository And Submodules - uses: actions/checkout@v1 - with: - submodules: recursive - - - name: Setup Rust - run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -q -y - - - name: Build - run: . "$HOME/.cargo/env" && cargo build --verbose - - - name: Run tests - run: . "$HOME/.cargo/env" && cargo test --verbose \ No newline at end of file diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml deleted file mode 100644 index 4618492..0000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: 'Close stale issues and PRs' -on: - schedule: - - cron: '30 1 * * *' - -jobs: - stale: - runs-on: debian-latest - steps: - - uses: actions/stale@v9 - with: - stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.' - days-before-stale: 10 - days-before-close: 5