Compare commits

...

11 commits
0.1.1 ... main

Author SHA1 Message Date
153fbc4104 ci(jenkins): print current user before trying to make iso
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 03:03:56 -07:00
afe07bd542 ci(jenkins): test another fix
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 03:02:07 -07:00
bbf5604f1c ci(jenkins): continue to adjust to stabilize build
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 02:59:51 -07:00
6d72b547ec bump: version 0.2.0 → 0.3.0 2024-10-06 02:44:19 -07:00
48e06389fb ci(jenkins): finish jenkinsfile
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 02:44:12 -07:00
95ac8cebc9 feat(jenkins): change the output path
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 02:41:15 -07:00
ee790e55ec ci(jenkins): adjust some more build instructions
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 02:39:39 -07:00
b89ccd7458 ci(jenkins): fix build command
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 02:35:27 -07:00
0ff361c101 bump: version 0.1.1 → 0.2.0 2024-10-06 02:24:49 -07:00
64984f3d8a refactor(adjustment): adjust some build params
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 02:24:46 -07:00
06b34bccb7 feat(pkg): adjust packages and configs
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 01:47:18 -07:00
9 changed files with 32 additions and 18 deletions

View file

@ -1,3 +1,19 @@
## 0.3.0 (2024-10-06)
### Feat
- **jenkins**: change the output path
## 0.2.0 (2024-10-06)
### Feat
- **pkg**: adjust packages and configs
### Refactor
- **adjustment**: adjust some build params
## 0.1.1 (2024-10-05)
### Refactor

10
Jenkinsfile vendored
View file

@ -37,10 +37,20 @@ pipeline {
sh '''
#!/bin/bash
echo -ne "I am user "
whoami
mkarchiso -v -w work -o out server
'''
}
}
post {
always {
archiveArtifacts artifacts: "out/*.iso"
}
}
}
}
}

View file

@ -3,7 +3,7 @@
"name": "cz_conventional_commits",
"tag_format": "$version",
"version_scheme": "semver2",
"version": "0.1.1",
"version": "0.3.0",
"update_changelog_on_bump": true,
"major_version_zero": true
}

View file

@ -1 +1 @@
archiso
ariaos

View file

@ -1,11 +1 @@
To install Arch Linux follow the installation guide:
https://wiki.archlinux.org/title/Installation_guide
For Wi-Fi, authenticate to the wireless network using the iwctl utility.
For mobile broadband (WWAN) modems, connect with the mmcli utility.
Ethernet, WLAN and WWAN interfaces using DHCP should work automatically.
After connecting to the internet, the installation guide can be accessed
via the convenience script Installation_guide.
                                          
Welcome to AriaOS Server Installation

View file

@ -21,7 +21,7 @@ else
fi
# Set default menu entry
default=archlinux
default=ariaos
timeout=15
timeout_style=menu

View file

@ -4,6 +4,7 @@ arch-install-scripts
archinstall
b43-fwcutter
base
base-devel
bcachefs-tools
bind
bolt

View file

@ -2,7 +2,7 @@
# shellcheck disable=SC2034
iso_name="ariaos"
iso_label="AOSServer_$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y%m)"
iso_label="AriaOSServer_$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y%m)"
iso_publisher="Aria <https://zontreck.com>"
iso_application="AriaOS Server ISO"
iso_version="$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y.%m.%d)"
@ -21,7 +21,4 @@ file_permissions=(
["/root"]="0:0:750"
["/root/.automated_script.sh"]="0:0:755"
["/root/.gnupg"]="0:0:700"
["/usr/local/bin/choose-mirror"]="0:0:755"
["/usr/local/bin/Installation_guide"]="0:0:755"
["/usr/local/bin/livecd-sound"]="0:0:755"
)