-
Notifications
You must be signed in to change notification settings - Fork 6
45 lines (41 loc) · 1.57 KB
/
sdk.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Build SDKs for Slint CI
on:
workflow_dispatch:
jobs:
prepare_env:
runs-on: ubuntu-latest
name: Create new Hetzner Cloud instance for build
steps:
- uses: stonemaster/hetzner-github-runner@v2
with:
github-api-key: ${{ secrets.GH_API_KEY }}
hetzner-api-key: ${{ secrets.HETZNER_API_KEY }}
hetzner-instance-type: cpx41
build:
runs-on: self-hosted
needs: prepare_env
steps:
- run: |
sudo apt-get update
sudo apt-get install -y chrpath diffstat lz4 locales build-essential wget cpio file gawk zstd python3 python3-distutils
sudo locale-gen en_US.UTF-8
sudo update-locale
- run: |
git clone -b scarthgap git://git.yoctoproject.org/poky
git clone -b scarthgap git://git.openembedded.org/meta-openembedded
git clone -b scarthgap https://github.com/kraj/meta-clang.git
- run: |
cd poky
. oe-init-build-env
bitbake-layers add-layer ../../meta-openembedded/meta-oe
bitbake-layers add-layer ../../meta-clang
echo 'MACHINE = "qemuarm"' >> conf/local.conf
echo 'CLANGSDK = "1"' >> conf/local.conf
- run: |
cd poky
. oe-init-build-env
bitbake core-image-weston-sdk -c populate_sdk
- run: |
for file in tmp/deploy/images/poky-glibc-*-core-image-weston*toolchain*; do
curl -T $file -H "X-Requested-With: XMLHttpRequest" -u ${{ secrets.NEXTCLOUD_SDK_FOLDER_TOKEN }}: "${{ secrets.NEXTCLOUD_SDK_URL }}/$file"
done