Skip to content

Commit

Permalink
🤖 Use CircleCI for docker build tests on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
mudler committed Sep 27, 2022
1 parent e6577b5 commit 98443e3
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
18 changes: 18 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,27 @@ jobs:
fi
workflows:

build:
jobs:
- build-arm:
matrix:
parameters:
image: ["quay.io/kairos/core"]
flavor: ["opensuse-arm-rpi", "alpine-arm-rpi"]
model: ["rpi64"]
release: ["no"]
- build-framework:
matrix:
parameters:
image: ["quay.io/kairos/framework"]
flavor: ["opensuse"]
release: ["no"]
lint:
jobs:
- lint
test:
jobs:
- unit-test
- build-bin
# - build-iso:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/image-arm.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
---
name: 'ARM build'
name: 'Push latest ARM images'

on:
push:
branches:
- master
pull_request:

concurrency:
group: ci-arm-${{ github.head_ref || github.ref }}-${{ github.repository }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/image-framework.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: Build Framework images
name: Build latest Framework images

on:
push:
branches:
- master
pull_request:

concurrency:
group: ci-fw-${{ github.head_ref || github.ref }}-${{ github.repository }}
Expand Down

0 comments on commit 98443e3

Please sign in to comment.