-
-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add elementary 7 daily images (#565)
- Loading branch information
1 parent
198c003
commit 06eee48
Showing
11 changed files
with
104 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: daily-7.0 | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
schedule: | ||
- cron: "0 0 * * *" | ||
workflow_dispatch: {} | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: debian:latest | ||
volumes: | ||
- /proc:/proc | ||
options: --privileged | ||
|
||
steps: | ||
- name: Clone build scripts | ||
uses: actions/checkout@v1 | ||
|
||
- name: Build and upload daily .iso | ||
run: | | ||
./workflows.sh etc/terraform-daily-7.0-azure.conf "${{ secrets.key }}" "${{ secrets.secret }}" "${{ secrets.endpoint }}" "${{ secrets.bucket }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- /usr/share/debootstrap/functions.orig 2021-10-23 23:13:10.576805331 +0000 | ||
+++ /usr/share/debootstrap/functions 2021-10-23 23:14:05.465350379 +0000 | ||
@@ -974,6 +974,7 @@ | ||
case "$tarball" in | ||
control.tar.gz) cat_cmd=zcat ;; | ||
control.tar.xz) cat_cmd=xzcat ;; | ||
+ control.tar.zst) cat_cmd=zstdcat ;; | ||
control.tar) cat_cmd=cat ;; | ||
*) error 1 UNKNOWNCONTROLCOMP "Unknown compression type for %s in %s" "$tarball" "$pkg" ;; | ||
esac | ||
@@ -996,6 +997,7 @@ | ||
data.tar.gz) cat_cmd=zcat ;; | ||
data.tar.bz2) cat_cmd=bzcat ;; | ||
data.tar.xz) cat_cmd=xzcat ;; | ||
+ data.tar.zst) cat_cmd=zstdcat ;; | ||
data.tar) cat_cmd=cat ;; | ||
*) error 1 UNKNOWNDATACOMP "Unknown compression type for %s in %s" "$tarball" "$pkg" ;; | ||
esac | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# target architecture - i386, amd64 or all | ||
ARCH="amd64" | ||
|
||
# base codename | ||
BASECODENAME="jammy" | ||
|
||
# base version | ||
BASEVERSION="22.04" | ||
|
||
# distribution codename | ||
CODENAME="next" | ||
|
||
# distribution version | ||
VERSION="7.0" | ||
|
||
# distribution channel | ||
CHANNEL="daily" | ||
|
||
# distribution name | ||
NAME="elementary OS" | ||
|
||
# mirror to fetch packages from | ||
MIRROR_URL="http://azure.archive.ubuntu.com/ubuntu/" | ||
|
||
# use HWE kernel and packages? | ||
HWE_KERNEL="no" | ||
HWE_X11="no" | ||
|
||
# use appcenter ppa | ||
INCLUDE_APPCENTER="" | ||
|
||
# suffix for generated .iso files | ||
OUTPUT_SUFFIX="" | ||
|
||
# folder suffix for the package lists to use | ||
PACKAGE_LISTS_SUFFIX="default" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.