From 60352251f38c557bfdf5f713f92fa9eb52bbb14b Mon Sep 17 00:00:00 2001 From: Polesznyák Márk Date: Mon, 22 Sep 2025 21:20:18 +0200 Subject: chore: remove GitHub related stuff --- .github/dependabot.yml | 10 ---------- .github/workflows/build.yml | 43 ------------------------------------------- .github/workflows/lint.yml | 26 -------------------------- .github/workflows/test.yml | 26 -------------------------- 4 files changed, 105 deletions(-) delete mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/build.yml delete mode 100644 .github/workflows/lint.yml delete mode 100644 .github/workflows/test.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index b7e295a..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,10 +0,0 @@ -version: 2 -updates: -- package-ecosystem: cargo - directory: "/" - schedule: - interval: monthly - time: "20:00" - open-pull-requests-limit: 10 - reviewers: - - pml68 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 45cba25..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Build -on: - push: - branches: - - master - -jobs: - build: - runs-on: ubuntu-latest - env: - RUSTFLAGS: -C linker=clang -C link-arg=-fuse-ld=mold - strategy: - fail-fast: false - matrix: - rust-version: [stable, nightly, 1.88.0] - steps: - - uses: hecrj/setup-rust-action@v2 - with: - rust-version: ${{ matrix.rust-version }} - - uses: actions/checkout@master - - name: Install dependencies - run: | - export DEBIAN_FRONTED=noninteractive - sudo apt-get -qq update - sudo apt-get install -y libxkbcommon-dev clang mold - - uses: actions/cache@v4 - if: matrix.rust-version != 'nightly' - with: - path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - target/ - key: ${{ runner.os }}-build-${{ matrix.rust-version }}-${{ hashFiles('**/Cargo.lock') }} - - name: Build iced-builder binary - run: cargo build --verbose --profile release-opt - - name: Archive iced-builder binary - if: matrix.rust-version == 'stable' - uses: actions/upload-artifact@v4 - with: - name: iced-builder-x86_64-unknown-linux-gnu - path: target/release-opt/iced-builder diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 2577f45..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Lint -on: [push, pull_request] -jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: hecrj/setup-rust-action@v2 - with: - components: clippy - - uses: actions/checkout@master - - name: Install dependencies - run: | - export DEBIAN_FRONTED=noninteractive - sudo apt-get -qq update - sudo apt-get install -y libxkbcommon-dev - - uses: actions/cache@v4 - with: - path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - target/ - key: ${{ runner.os }}-ci-${{ hashFiles('**/Cargo.lock') }} - - name: Check lints - run: cargo lint diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 652babe..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Test -on: [push, pull_request] -jobs: - test: - runs-on: ubuntu-latest - env: - RUSTFLAGS: -C linker=clang -C link-arg=-fuse-ld=mold --deny warnings - steps: - - uses: hecrj/setup-rust-action@v2 - - uses: actions/checkout@master - - name: Install dependencies - run: | - export DEBIAN_FRONTED=noninteractive - sudo apt-get -qq update - sudo apt-get install -y libxkbcommon-dev clang mold - - uses: actions/cache@v4 - with: - path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - target/ - key: ${{ runner.os }}-ci-${{ hashFiles('**/Cargo.lock') }} - - name: Run tests - run: cargo test --verbose --workspace -- cgit v1.2.3