From a17dbba84eff86f36e31503734f0057261f5c4e2 Mon Sep 17 00:00:00 2001 From: Mr_Purple_666 Date: Mon, 2 Jan 2023 21:52:07 -0300 Subject: [PATCH] Create panfrost_ci.yml --- .github/workflows/panfrost_ci.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/panfrost_ci.yml diff --git a/.github/workflows/panfrost_ci.yml b/.github/workflows/panfrost_ci.yml new file mode 100644 index 0000000..7b6c008 --- /dev/null +++ b/.github/workflows/panfrost_ci.yml @@ -0,0 +1,27 @@ +name: Build "panfrost" + +on: + workflow_dispatch: + schedule: + - cron: '30 0-23 * * *' + +jobs: + start_building_panfrost: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + + - name: Prepare environment + run: | + sudo sed -Ei 's/^# deb-src /deb-src /' /etc/apt/sources.list + sudo apt update && sudo apt upgrade + sudo apt build-dep mesa -y + + - name: Execute build script + run: bash ./turnip_builder.sh + + - name: Upload a Build Artifact + uses: actions/upload-artifact@v3.1.0 + with: + name: panfrost-23.0.0-P-Alpha_MrPurple.adpkg.zip + path: turnip_workdir/panfrost-23.0.0-P-Alpha_MrPurple.adpkg.zip