aboutsummaryrefslogtreecommitdiffstats
path: root/.forgejo
diff options
context:
space:
mode:
authorLiam <lgh@e.email>2023-12-29 14:30:43 +0100
committerLiam <lgh@e.email>2023-12-29 14:30:43 +0100
commit1b7c5a108fa840550c6cd7cdbd4b5df29c1fada2 (patch)
tree390cd7adf1aeacef1df93f7d3189dfb966038f3d /.forgejo
parent6cef7c5aead9fde523795760b5359d3b90dc7203 (diff)
downloadSDK-Rebuild-1b7c5a108fa840550c6cd7cdbd4b5df29c1fada2.tar.gz
SDK-Rebuild-1b7c5a108fa840550c6cd7cdbd4b5df29c1fada2.tar.bz2
SDK-Rebuild-1b7c5a108fa840550c6cd7cdbd4b5df29c1fada2.zip
CI tries to build any folder that starts with sdk
Diffstat (limited to '.forgejo')
-rw-r--r--.forgejo/workflows/demo.yaml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml
new file mode 100644
index 0000000..3f113d7
--- /dev/null
+++ b/.forgejo/workflows/demo.yaml
@@ -0,0 +1,19 @@
+on: [push]
+jobs:
+ test:
+ runs-on: debian-latest
+ steps:
+ - run: sudo apt update
+ - run: |
+ sudo apt install git repo gnupg flex bison gperf build-essential zip curl \
+ zlib1g-dev gcc-multilib g++-multilib libc6-dev-i386 libncurses5-dev \
+ libncurses5 libx11-dev lib32z1-dev libgl1-mesa-dev \
+ libxml2-utils xsltproc unzip rsync python3 python-is-python3 tofrodos repo
+ - run: mkdir -p artifacts
+ - uses: actions/upload-artifact@v3
+ with:
+ name: many-artifacts
+ path: artifacts/
+ - run: ./build.sh
+
+