Skip to content

Commit

Permalink
build for test
Browse files Browse the repository at this point in the history
  • Loading branch information
ciscon committed Jan 19, 2024
1 parent c69206b commit 4201995
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/create-for-testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Create

on:
push:
branches:
- 'testing'

jobs:

build-x86:
permissions: write-all
name: Create image amd64
runs-on: ubuntu-latest
strategy:
matrix:
BUILDTYPE: ["full"]
BUILDARCH: ["amd64"]
steps:
- uses: actions/checkout@v3
- name: Build
id: build_bootable
env:
BUILDTYPE: ${{matrix.BUILDTYPE}}
BUILDARCH: ${{matrix.BUILDARCH}}
run: |
sudo apt-get -qqy update && sudo apt-get -qqy install debootstrap coreutils pigz fdisk kpartx mount uuid-runtime lvm2
bash ./create_image.sh
mv *.img bootable.img
- uses: actions/upload-artifact@v3
with:
name: bootable.img
path: bootable.img
1 change: 1 addition & 0 deletions .github/workflows/create-release-from-a-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- 'main'
- 'testing'

jobs:

Expand Down

0 comments on commit 4201995

Please sign in to comment.