From 68e9f814e366e494cda61d503366071b4f7317f2 Mon Sep 17 00:00:00 2001 From: Mateus Melchiades Date: Sat, 27 Jul 2024 18:23:05 +0000 Subject: [PATCH] cleanup: update files --- .github/workflows/ci.yml | 25 +++++++++++++++++++++++++ COPYING.txt => LICENSE.txt | 0 2 files changed, 25 insertions(+) create mode 100644 .github/workflows/ci.yml rename COPYING.txt => LICENSE.txt (100%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..eb8137e --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: Build + +on: + push: + pull_request: + branches: [ "main" ] + +jobs: + build: + name: Build + runs-on: ubuntu-latest + container: + image: ghcr.io/vanilla-os/pico:main + + steps: + - uses: actions/checkout@v4 + + - name: Install build dependencies + run: | + apt-get update + apt-get install -y build-essential debhelper gettext meson python3 libadwaita-1-dev libjpeg-dev dpkg-dev desktop-file-utils blueprint-compiler + + - name: Setup and Build + run: meson setup build + diff --git a/COPYING.txt b/LICENSE.txt similarity index 100% rename from COPYING.txt rename to LICENSE.txt