This repository has been archived by the owner on Aug 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upload Repo Artifacts, add Image CI Workflow (#1)
Has a fixme, can't resolve right now, will address later
- Loading branch information
Showing
8 changed files
with
114 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Image | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
debian-image: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
arch: [ amd64, arm64 ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Build the image | ||
run: ./build ostreeImage-${{ matrix.arch }} | ||
working-directory: ./debian | ||
- name: Upload ${{ matrix.arch }} image | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ostree-${{ matrix.arch }}-trixie-image | ||
path: debian/.build/ostreeImage-${{ matrix.arch }}-trixie*.ostreeImage.tar.gz | ||
retention-days: 2 | ||
|
||
gardenlinux-image: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
arch: [ amd64, arm64 ] | ||
platform: [ kvm ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Build the image | ||
run: ./build ${{ matrix.platform }}_dev_curl-ostreeImage-${{ matrix.arch }} | ||
working-directory: ./gardenlinux | ||
- name: Upload ${{ matrix.arch }} image | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ matrix.platform }}_dev_curl-ostreeImage-${{ matrix.arch }} | ||
path: gardenlinux/.build/${{ matrix.platform }}*ostreeImage-${{ matrix.arch }}*.ostreeImage.tar.gz | ||
retention-days: 2 |
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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
description: 'image-based system using OSTree' | ||
type: platform | ||
type: element |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
description: 'image-based system using OSTree' | ||
type: flag | ||
type: element | ||
features: | ||
exclude: | ||
- _boot |