From 083bdc772d006b241190be12a0d015c3e612c439 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juliano=20Dorig=C3=A3o?= Date: Mon, 27 Jan 2025 07:55:49 -0400 Subject: [PATCH] removed buildroot repository settings --- .github/pull_request_template.md | 6 --- .github/workflows/repo-lockdown.yml | 25 ------------ .gitlab-ci.yml | 33 ---------------- .gitlab/issue_templates/default.md | 60 ----------------------------- 4 files changed, 124 deletions(-) delete mode 100644 .github/pull_request_template.md delete mode 100644 .github/workflows/repo-lockdown.yml delete mode 100644 .gitlab-ci.yml delete mode 100644 .gitlab/issue_templates/default.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index 319e67d8613..00000000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,6 +0,0 @@ -Please do not submit a Pull Request via GitHub. Buildroot makes use of a -[mailing list](http://lists.buildroot.org/mailman/listinfo/buildroot) for patch submission and review. -See [submitting your own patches](http://buildroot.org/manual.html#submitting-patches) for more info. - -Thanks for your help! - diff --git a/.github/workflows/repo-lockdown.yml b/.github/workflows/repo-lockdown.yml deleted file mode 100644 index 45cfd2867d3..00000000000 --- a/.github/workflows/repo-lockdown.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: 'Repo Lockdown' - -on: - pull_request_target: - types: opened - -permissions: - pull-requests: write - -jobs: - action: - if: github.repository == 'buildroot/buildroot' - runs-on: ubuntu-latest - steps: - - uses: dessant/repo-lockdown@v4 - with: - pr-comment: | - Please do not submit a Pull Request via GitHub. Buildroot makes use of a - [mailing list](http://lists.buildroot.org/mailman/listinfo/buildroot) for patch submission and review. - See [submitting your own patches](http://buildroot.org/manual.html#submitting-patches) for more info. - - Thanks for your help! - lock-pr: true - close-pr: true - diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 3d7719568f0..00000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,33 +0,0 @@ -# Configuration for Gitlab-CI. -# Builds appear on https://gitlab.com/buildroot.org/buildroot/pipelines - -image: $CI_REGISTRY/buildroot.org/buildroot/base:20230207.1123 - -stages: - - generate-gitlab-ci - - build - -generate-gitlab-ci-yml: - stage: generate-gitlab-ci - script: ./support/scripts/generate-gitlab-ci-yml support/misc/gitlab-ci.yml.in > generated-gitlab-ci.yml - retry: - max: 2 - when: - - runner_system_failure - - stuck_or_timeout_failure - artifacts: - when: always - paths: - - generated-gitlab-ci.yml - - br-test-pkg/*/.config - - br-test-pkg/*/missing.config - -buildroot-pipeline: - stage: build - trigger: - include: - - artifact: generated-gitlab-ci.yml - job: generate-gitlab-ci-yml - strategy: depend - variables: - PARENT_PIPELINE_ID: $CI_PIPELINE_ID diff --git a/.gitlab/issue_templates/default.md b/.gitlab/issue_templates/default.md deleted file mode 100644 index 968d6aab641..00000000000 --- a/.gitlab/issue_templates/default.md +++ /dev/null @@ -1,60 +0,0 @@ -Thank you for opening a new issue. To help solve it faster and more easily, -please review this check-list, and fill in the sections below. Adapt as -needed. - -Do not open an issue to request a new feature; instead, post a message to -[the mailing list](https://lists.buildroot.org/mailman/listinfo/buildroot). - -_Note: issues missing any information may get closed without further ado._ - ---- -### Check-list - -- [ ] I did not find the issue in the existing issues -- [ ] I can reproduce the issue with unmodified Buildroot from [this - repository](https://gitlab.com/buildroot.org/buildroot), not from a - fork somewhere else -- [ ] I can reproduce the issue on the latest commit of the branch I'm using: - - [ ] master - - [ ] stable (i.e. 20NN.MM.x - please specify) - - [ ] LTS (i.e. 20NN.02.x - please specify) -- [ ] I can reproduce the issue after running `make clean; make` -- [ ] I attached the full build log file (e.g. `make 2>&1 |tee build.log`) -- [ ] I attached a **minimal** defconfig file that can reproduce the - issue (`make BR2_DEFCONFIG=$(pwd)/issue_defconfig savedefconfig`) -- [ ] I also attached the configuration for kconfig-based packages that - are enabled (and necessary to reproduce the issue), most notably: - - [ ] busybox - - [ ] linux - - [ ] uclibc - - [ ] uboot - - [ ] … - ---- -### What I did - -- **Buildroot commit sha1**: _get this with `git describe HEAD`_ -- **Distribution of the build machine**: _get this with `NAME` and `VERSION` from `/etc/os-release`_ - -_Here, describe what you did:_ -- _any special environment variables: CC, CXX, TARGET, CROSS_COMPILE, etc…_ -- _the commands you ran:_ - ```sh - $ make [...] - ``` -- _anything else that you might think is important…_ - ---- -### What happens - -_Here, describe what happens that you believe was incorrect._ - ---- -### What was expected - -_Here, describe the behaviour you expected._ - ---- -### Extra information - -_Here, you may write additional information that does not fit above_