summaryrefslogtreecommitdiff
path: root/src/libs/lvgl/.github
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2021-02-23 20:40:02 (GMT)
committerJean-François Milants <jf@codingfield.com>2021-02-23 20:53:50 (GMT)
commit094f98743db630cf070d9fe97e14b24db6450112 (patch)
treee7106bbcf902981ee6ac18364e319400b8a6bb86 /src/libs/lvgl/.github
parent67c545b1fbd368b99b111a1822fe8da815468e76 (diff)
Fix LVGL submodule (sorry!)
Diffstat (limited to 'src/libs/lvgl/.github')
m---------src/libs/lvgl0
-rw-r--r--src/libs/lvgl/.github/FUNDING.yml1
-rw-r--r--src/libs/lvgl/.github/ISSUE_TEMPLATE/bug-report.md43
-rw-r--r--src/libs/lvgl/.github/ISSUE_TEMPLATE/config.yml14
-rw-r--r--src/libs/lvgl/.github/ISSUE_TEMPLATE/dev-discussion.md29
-rw-r--r--src/libs/lvgl/.github/auto-comment.yml12
-rw-r--r--src/libs/lvgl/.github/pull_request_template.md8
-rw-r--r--src/libs/lvgl/.github/stale.yml17
-rw-r--r--src/libs/lvgl/.github/workflows/build_micropython.yml41
-rw-r--r--src/libs/lvgl/.github/workflows/ccpp.yml18
-rw-r--r--src/libs/lvgl/.github/workflows/main.yml16
-rw-r--r--src/libs/lvgl/.github/workflows/merge-to-dev.yml17
-rw-r--r--src/libs/lvgl/.github/workflows/release.yml27
13 files changed, 0 insertions, 243 deletions
diff --git a/src/libs/lvgl b/src/libs/lvgl
new file mode 160000
+Subproject b89c30eafe1397a778ae5d65f108a0ef820de12
diff --git a/src/libs/lvgl/.github/FUNDING.yml b/src/libs/lvgl/.github/FUNDING.yml
deleted file mode 100644
index 1353007..0000000
--- a/src/libs/lvgl/.github/FUNDING.yml
+++ /dev/null
@@ -1 +0,0 @@
-open_collective: lvgl
diff --git a/src/libs/lvgl/.github/ISSUE_TEMPLATE/bug-report.md b/src/libs/lvgl/.github/ISSUE_TEMPLATE/bug-report.md
deleted file mode 100644
index 9d9f05d..0000000
--- a/src/libs/lvgl/.github/ISSUE_TEMPLATE/bug-report.md
+++ /dev/null
@@ -1,43 +0,0 @@
----
-name: Bug report
-about: Create a bug report to help us improve
-title: ''
-labels: ''
-assignees: ''
-
----
-
-<!--
-IMPORTANT
-Issues that don't use this template will be ignored and closed.
--->
-
-### Perform all steps below and tick them with [x]
-- [ ] Check the related part of the [Documentation](https://docs.lvgl.io/)
-- [ ] Update lvgl to the latest version
-- [ ] Reproduce the issue in a [Simulator](https://docs.lvgl.io/latest/en/html/get-started/pc-simulator.html)
-
-### Describe the bug
-<!--
-A clear and concise description of what the bug is.
--->
-
-### To Reproduce
-<!--
-Provide a small, independent code sample that can be used to reproduce the issue.
-Ideally this should work in the PC simulator unless the problem is specific to a platform.
-Format the code like this:
-```c
-your code here
-```
--->
-
-### Expected behavior
-<!--
-A clear and concise description of what you expected to happen.
--->
-
-### Screenshots or video
-<!--
-If applicable, add screenshots to help explain your problem.
--->
diff --git a/src/libs/lvgl/.github/ISSUE_TEMPLATE/config.yml b/src/libs/lvgl/.github/ISSUE_TEMPLATE/config.yml
deleted file mode 100644
index 2228ff1..0000000
--- a/src/libs/lvgl/.github/ISSUE_TEMPLATE/config.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-blank_issues_enabled: false
-contact_links:
- - name: Documentation
- url: https://docs.lvgl.io
- about: Be sure to read to documentation first
- - name: Forum
- url: https://forum.lvgl.io
- about: For topics like How-to, Getting started, Feature request
- - name: CONTIBUTING.md
- url: https://github.com/lvgl/lvgl/blob/master/docs/CONTRIBUTING.md#faq-about-contributing
- about: The basic rules of contributing
- - name: CODING_STYLE.md
- url: https://github.com/lvgl/lvgl/blob/master/docs/CODING_STYLE.md
- about: Quick summary of LVGL's code style
diff --git a/src/libs/lvgl/.github/ISSUE_TEMPLATE/dev-discussion.md b/src/libs/lvgl/.github/ISSUE_TEMPLATE/dev-discussion.md
deleted file mode 100644
index 7c9f6c0..0000000
--- a/src/libs/lvgl/.github/ISSUE_TEMPLATE/dev-discussion.md
+++ /dev/null
@@ -1,29 +0,0 @@
----
-name: Development discussion
-about: Discussion strictly related to the development of the LVGL.
-title: ''
-labels: ''
-assignees: ''
-
----
-<!--
-IMPORTANT
-Issues that don't use this template will be ignored and closed.
-
-Normal Feature requests should go to the Forum: https://forum.lvgl.io/c/feature-request/9
--->
-
-### Introduce the problem
-<!--
-A clear and concise description of the problem.
--->
-
-### Examples and cases
-<!--
-Mention some examples and cases where the problem or the missing feature is relevant
--->
-
-### Suggested solution
-<!--
-If you already have an idea about the solution share it here
--->
diff --git a/src/libs/lvgl/.github/auto-comment.yml b/src/libs/lvgl/.github/auto-comment.yml
deleted file mode 100644
index a141fb5..0000000
--- a/src/libs/lvgl/.github/auto-comment.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-# Comment to a new issue.
-pullRequestOpened: |
- Thank you for raising your pull request.
-
- To ensure that all licensing criteria is met all repositories of the LVGL project apply a process called DCO (Developer's Certificate of Origin).
-
- The text of DCO can be read here: https://developercertificate.org/
- For a more detailed description see the [Documentation](https://docs.lvgl.io/latest/en/html/contributing/index.html#developer-certification-of-origin-dco) site.
-
- By contributing to any repositories of the LVGL project you state that your contribution corresponds with the DCO.
-
- No further action is required if your contribution fulfills the DCO. If you are not sure about it feel free to ask us in a comment.
diff --git a/src/libs/lvgl/.github/pull_request_template.md b/src/libs/lvgl/.github/pull_request_template.md
deleted file mode 100644
index e4e0cf8..0000000
--- a/src/libs/lvgl/.github/pull_request_template.md
+++ /dev/null
@@ -1,8 +0,0 @@
-### Description of the feature or fix
-
-A clear and concise description of what the bug or new feature is.
-
-### Checkpoints
-- [ ] Follow the [styling guide](https://github.com/lvgl/lvgl/blob/master/docs/CODING_STYLE.md)
-- [ ] Update CHANGELOG.md
-- [ ] Update the documentation
diff --git a/src/libs/lvgl/.github/stale.yml b/src/libs/lvgl/.github/stale.yml
deleted file mode 100644
index c3d60ea..0000000
--- a/src/libs/lvgl/.github/stale.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-# Number of days of inactivity before an issue becomes stale
-daysUntilStale: 21
-# Number of days of inactivity before a stale issue is closed
-daysUntilClose: 7
-# Issues with these labels will never be considered stale
-exemptLabels:
- - architecture
- - pinned
-# Label to use when marking an issue as stale
-staleLabel: stale
-# Comment to post when marking an issue as stale. Set to `false` to disable
-markComment: >
- This issue or pull request has been automatically marked as stale because it has not had
- recent activity. It will be closed if no further activity occurs. Thank you
- for your contributions.
-# Comment to post when closing a stale issue. Set to `false` to disable
-closeComment: false
diff --git a/src/libs/lvgl/.github/workflows/build_micropython.yml b/src/libs/lvgl/.github/workflows/build_micropython.yml
deleted file mode 100644
index bbc33f7..0000000
--- a/src/libs/lvgl/.github/workflows/build_micropython.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-name: Build Micropython with LVGL submodule
-
-on:
- push:
- branches: [ master, dev ]
- pull_request:
- branches: [ master, dev ]
-
-jobs:
- build:
-
- runs-on: ubuntu-latest
-
- steps:
- - name: Install SDL
- run: |
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe restricted multiverse"
- sudo apt-get update -y -qq
- sudo apt-get install libsdl2-dev
- - name: Clone lv_micropython
- run: git clone https://github.com/lvgl/lv_micropython.git .
- - name: Update submodules
- run: git submodule update --init --recursive
- - name: Checkout LVGL submodule
- working-directory: ./lib/lv_bindings/lvgl
- run: |
- git fetch --force ${{ github.event.repository.git_url }} "+refs/heads/*:refs/remotes/origin/*"
- git fetch --force ${{ github.event.repository.git_url }} "+refs/pull/*:refs/remotes/origin/pr/*"
- git checkout ${{ github.sha }} || git checkout ${{ github.event.pull_request.head.sha }}
- git submodule update --init --recursive
- - name: Build mpy-cross
- run: make -j $(nproc) -C mpy-cross
- - name: Build the unix port
- run: make -j $(nproc) -C ports/unix
- - name: Run advanced_demo
- run: >
- echo "import gc,utime;
- utime.sleep(5);
- gc.collect();
- utime.sleep(5)" |
- ports/unix/micropython -i lib/lv_bindings/examples/advanced_demo.py
diff --git a/src/libs/lvgl/.github/workflows/ccpp.yml b/src/libs/lvgl/.github/workflows/ccpp.yml
deleted file mode 100644
index f933952..0000000
--- a/src/libs/lvgl/.github/workflows/ccpp.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-name: C/C++ CI
-
-on:
- push:
- branches: [ master, dev ]
- pull_request:
- branches: [master, dev ]
-
-jobs:
- build:
-
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v2
- - uses: ammaraskar/gcc-problem-matcher@master
- - name: Run tests
- run: sudo apt-get install libpng-dev; cd tests; python ./build.py
diff --git a/src/libs/lvgl/.github/workflows/main.yml b/src/libs/lvgl/.github/workflows/main.yml
deleted file mode 100644
index 9c4fc30..0000000
--- a/src/libs/lvgl/.github/workflows/main.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-on:
- issues:
- types: [opened, edited]
-
-jobs:
- auto_close_issues:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v1
- - name: Automatically close issues that don't follow the issue template
- uses: lucasbento/auto-close-issues@v1.0.2
- with:
- github-token: ${{ secrets.GITHUB_TOKEN }}
- issue-close-message: "@${issue.user.login}: hello! :wave:\n\nThis issue is being automatically closed because it does not follow the issue template." # optional property
- closed-issues-label: "not-template"
diff --git a/src/libs/lvgl/.github/workflows/merge-to-dev.yml b/src/libs/lvgl/.github/workflows/merge-to-dev.yml
deleted file mode 100644
index 997bb5d..0000000
--- a/src/libs/lvgl/.github/workflows/merge-to-dev.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-name: Merge master branch to dev
-on:
- push:
- branches:
- - 'master'
-jobs:
- merge-branch:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@master
- - name: Merge to dev branch
- uses: devmasx/merge-branch@v1.1.0
- with:
- type: now
- target_branch: 'dev'
- env:
- GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
diff --git a/src/libs/lvgl/.github/workflows/release.yml b/src/libs/lvgl/.github/workflows/release.yml
deleted file mode 100644
index b0fab0f..0000000
--- a/src/libs/lvgl/.github/workflows/release.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-on:
- push:
- # Sequence of patterns matched against refs/tags
- tags:
- - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
-
-name: Create Release
-
-jobs:
- build:
- name: Create Release
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@v2
- - name: Create Release
- id: create_release
- uses: actions/create-release@v1
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
- with:
- tag_name: ${{ github.ref }}
- release_name: Release ${{ github.ref }}
- body: |
- See the [CHANGELOG](https://github.com/lvgl/lvgl/blob/master/CHANGELOG.md)
- draft: false
- prerelease: false