2024-07-24 01:06:18 +02:00
|
|
|
name: PikaOS Package Build Only (i386)
|
|
|
|
|
|
|
|
on:
|
2024-07-24 02:28:27 +02:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths:
|
|
|
|
- '.github/build-nest-i386'
|
2024-07-24 01:06:18 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2024-07-24 02:28:27 +02:00
|
|
|
runs-on: ubuntu-latest
|
2024-07-24 01:06:18 +02:00
|
|
|
container:
|
|
|
|
image: ghcr.io/pikaos-linux/pikaos-builder:nesti386
|
|
|
|
volumes:
|
|
|
|
- /proc:/proc
|
|
|
|
options: --privileged -it
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Install SSH key
|
|
|
|
uses: shimataro/ssh-key-action@v2
|
|
|
|
with:
|
2024-07-25 22:21:30 +02:00
|
|
|
key: ${{ secrets.SSH_KEY }}
|
2024-07-24 01:06:18 +02:00
|
|
|
name: id_rsa
|
2024-07-25 22:21:30 +02:00
|
|
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
2024-07-24 01:06:18 +02:00
|
|
|
if_key_exists: replace
|
|
|
|
|
|
|
|
- name: Update APT Cache
|
|
|
|
run: apt-get update -y
|
|
|
|
|
2024-07-24 13:00:33 +02:00
|
|
|
- name: Set Build Config
|
|
|
|
run: cp -vf ./pika-build-config/i386.sh ./pika-build-config.sh
|
|
|
|
|
2024-07-24 01:06:18 +02:00
|
|
|
- name: Build Package
|
2024-07-24 13:00:33 +02:00
|
|
|
run: ./main.sh
|