Skip to content

Commit

Permalink
Set up Github Actions CI
Browse files Browse the repository at this point in the history
Signed-off-by: Preetam D'Souza <preetamjdsouza@gmail.com>
  • Loading branch information
pdsouza committed Oct 8, 2023
1 parent 6ab891a commit 20c9bab
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'CI'

on:
push:
branches:
- main
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository code
uses: actions/checkout@v4
- name: Build CI container
run: 'docker build -t maruos/blueprints/ci --file Dockerfile.aarch64 .'
- name: Build Debian Buster arm64
run: 'docker run --privileged --rm -v /var/cache:/var/cache -v "$(pwd)":/var/maru -i maruos/blueprints/ci -b debian -n buster-container -- -r buster -a arm64 --minimal'

0 comments on commit 20c9bab

Please sign in to comment.