add actions
This commit is contained in:
parent
b90fcbdd0d
commit
8e0fbb14ec
50
.github/workflows/release.yml
vendored
Normal file
50
.github/workflows/release.yml
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
name: release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
name: Release
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: archlinux
|
||||||
|
options: --privileged
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Initialize
|
||||||
|
run: |
|
||||||
|
pacman -Syuu --noconfirm base-devel archiso docker git
|
||||||
|
git clone https://gitlab.archlinux.org/archlinux/archiso
|
||||||
|
cp -rf ./cfg/profiledef.sh /usr/share/archiso/configs/releng/
|
||||||
|
cp -rf ./cfg/profiledef.sh ./archiso/configs/releng/profiledef.sh
|
||||||
|
cp -rf ./cfg/profiledef.sh ./archiso/configs/baseline/profiledef.sh
|
||||||
|
cp -rf ./scpt/mkarchiso ./archiso/archiso/mkarchiso
|
||||||
|
./archiso/archiso/mkarchiso -v -o ./ ./archiso/configs/releng/
|
||||||
|
tar xf aios-bootstrap*.tar.gz
|
||||||
|
echo -e 'Server = http://mirrors.cat.net/archlinux/$repo/os/$arch\nServer = https://geo.mirror.pkgbuild.com/$repo/os/$arch' >> ./root.x86_64/etc/pacman.d/mirrorlist
|
||||||
|
sed -i s/CheckSpace/#CheckeSpace/ root.x86_64/etc/pacman.conf
|
||||||
|
arch-chroot root.x86_64 /bin/sh -c 'pacman-key --init'
|
||||||
|
arch-chroot root.x86_64 /bin/sh -c 'pacman-key --populate archlinux'
|
||||||
|
arch-chroot root.x86_64 /bin/sh -c 'pacman -Syu --noconfirm base base-devel linux vim git zsh rust openssh openssl jq'
|
||||||
|
arch-chroot root.x86_64 /bin/sh -c 'git clone https://git.syui.ai/ai/bot && cd bot && cargo build && cp -rf ./target/debug/ai /bin/ && ai ai'
|
||||||
|
tar -zcvf aios-bootstrap.tar.gz root.x86_64/
|
||||||
|
tar -C ./root.x86_64 -c . | docker import - syui/aios
|
||||||
|
echo "${{ env.DOCKER_TOKEN }}" | docker login -u syui --password-stdin
|
||||||
|
docker push syui/aios
|
||||||
|
|
||||||
|
- name: Create new release
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
with:
|
||||||
|
name: Release latest
|
||||||
|
tag_name: latest
|
||||||
|
files:
|
||||||
|
aios-bootstrap.tar.gz
|
@ -57,4 +57,3 @@ $ docker run --rm syui/aios cargo version
|
|||||||
cargo 1.75.0
|
cargo 1.75.0
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
44
build.zsh
44
build.zsh
@ -1,30 +1,22 @@
|
|||||||
#!/bin/zsh
|
#!/bin/zsh
|
||||||
|
|
||||||
d=${0:a:h}
|
d=${0:a:h}
|
||||||
case $1 in
|
cd $d
|
||||||
bsae)
|
|
||||||
a=baseline
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
a=releng
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
|
if ! ls ./*.tar.gz;then
|
||||||
if ! ls $d/*.tar.gz;then
|
rm -rf ./*.tar.gz
|
||||||
rm -rf $d/*.tar.gz
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d $d/work ];then
|
if [ -d ./work ];then
|
||||||
rm -rf $d/work
|
rm -rf ./work
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d $d/root.x86_64 ];then
|
if [ -d ./root.x86_64 ];then
|
||||||
rm -rf $d/root.x86_64
|
rm -rf ./root.x86_64
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d $d/archiso ];then
|
if [ -d ./archiso ];then
|
||||||
rm -rf $d/archiso
|
rm -rf ./archiso
|
||||||
fi
|
fi
|
||||||
|
|
||||||
git clone https://gitlab.archlinux.org/archlinux/archiso
|
git clone https://gitlab.archlinux.org/archlinux/archiso
|
||||||
@ -32,13 +24,15 @@ git clone https://gitlab.archlinux.org/archlinux/archiso
|
|||||||
# rm -rf $d/archlinux-docker
|
# rm -rf $d/archlinux-docker
|
||||||
# git clone https://gitlab.archlinux.org/archlinux/archlinux-docker
|
# git clone https://gitlab.archlinux.org/archlinux/archlinux-docker
|
||||||
|
|
||||||
cp -rf $d/cfg/profiledef.sh $d/archiso/configs/$a/profiledef.sh
|
cp -rf ./cfg/profiledef.sh /usr/share/archiso/configs/releng/
|
||||||
cp -rf $d/scpt/mkarchiso $d/archiso/archiso/mkarchiso
|
cp -rf ./cfg/profiledef.sh ./archiso/configs/releng/profiledef.sh
|
||||||
|
cp -rf ./cfg/profiledef.sh ./archiso/configs/baseline/profiledef.sh
|
||||||
|
cp -rf ./scpt/mkarchiso ./archiso/archiso/mkarchiso
|
||||||
|
|
||||||
$d/archiso/archiso/mkarchiso -v -o $d/ $d/archiso/configs/releng
|
./archiso/archiso/mkarchiso -v -o ./ ./archiso/configs/releng
|
||||||
|
|
||||||
if [ ! -d $d/root.x86_64 ];then
|
if [ ! -d ./root.x86_64 ];then
|
||||||
tar xf $d/aios-bootstrap*.tar.gz
|
tar xf ./aios-bootstrap*.tar.gz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo -e 'Server = http://mirrors.cat.net/archlinux/$repo/os/$arch\nServer = https://geo.mirror.pkgbuild.com/$repo/os/$arch' >> ./root.x86_64/etc/pacman.d/mirrorlist
|
echo -e 'Server = http://mirrors.cat.net/archlinux/$repo/os/$arch\nServer = https://geo.mirror.pkgbuild.com/$repo/os/$arch' >> ./root.x86_64/etc/pacman.d/mirrorlist
|
||||||
@ -48,12 +42,10 @@ arch-chroot root.x86_64 /bin/sh -c 'pacman-key --populate archlinux'
|
|||||||
arch-chroot root.x86_64 /bin/sh -c 'pacman -Syu --noconfirm base base-devel linux vim git zsh rust openssh openssl jq'
|
arch-chroot root.x86_64 /bin/sh -c 'pacman -Syu --noconfirm base base-devel linux vim git zsh rust openssh openssl jq'
|
||||||
arch-chroot root.x86_64 /bin/sh -c 'git clone https://git.syui.ai/ai/bot && cd bot && cargo build && cp -rf ./target/debug/ai /bin/ && ai ai'
|
arch-chroot root.x86_64 /bin/sh -c 'git clone https://git.syui.ai/ai/bot && cd bot && cargo build && cp -rf ./target/debug/ai /bin/ && ai ai'
|
||||||
|
|
||||||
# docker image
|
|
||||||
systemctl start docker
|
systemctl start docker
|
||||||
tar -C $d/root.x86_64 -c . | docker import - syui/aios
|
tar -C ./root.x86_64 -c . | docker import - syui/aios
|
||||||
|
|
||||||
docker images -a
|
docker images -a
|
||||||
docker run --rm syui/aios ai
|
docker run --rm syui/aios ai
|
||||||
docker push syui/aios
|
docker push syui/aios
|
||||||
|
|
||||||
# docker run -it syui/aios zsh
|
|
||||||
|
Loading…
Reference in New Issue
Block a user