From 368c0c6912f508f4959352fbd2847e8018bc9209 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Mon, 21 Oct 2024 11:51:27 +0200 Subject: [PATCH] Create build workflow --- .github/workflows/blank.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..c2f4391 --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,37 @@ +# This is a basic workflow to help you get started with Actions + +name: build-systems + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build_nuOS: + runs-on: self-hosted + steps: + - uses: actions/checkout@v4 + - name: do the build + run: nixos-rebuild build --flake .#nuOS + build_lambdaOS: + runs-on: self-hosted + steps: + - uses: actions/checkout@v4 + - name: do the build + run: nixos-rebuild build --flake .#lambdaOS + build_muOS: + runs-on: self-hosted + steps: + - uses: actions/checkout@v4 + - name: do the build + run: nixos-rebuild build --flake .#muOS +