summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPolesznyák Márk <contact@pml68.dev>2025-09-22 21:20:18 +0200
committerPolesznyák Márk <contact@pml68.dev>2025-09-22 21:20:18 +0200
commit60352251f38c557bfdf5f713f92fa9eb52bbb14b (patch)
treee3e127372cf4509b35d1bf6597d77848bbfb6dd7
parentfeat: switch to `prettyplease` for code formatting (diff)
downloadiced-builder-60352251f38c557bfdf5f713f92fa9eb52bbb14b.tar.gz
chore: remove GitHub related stuff
-rw-r--r--.github/dependabot.yml10
-rw-r--r--.github/workflows/build.yml43
-rw-r--r--.github/workflows/lint.yml26
-rw-r--r--.github/workflows/test.yml26
4 files changed, 0 insertions, 105 deletions
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