Skip to content

Commit

Permalink
ci: add workflow with smoke-build in kas
Browse files Browse the repository at this point in the history
Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@canonical.com>
  • Loading branch information
zyga committed Mar 4, 2024
1 parent 786bf77 commit c8698f4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/kas.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: kas build
on:
pull_request:
branches: [ "master", "kirkstone" ]
push:
branches: [ "master", "kirkstone", "workflow"]

jobs:
kas:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install build dependencies
run: |
sudo apt-get update
sudo -E DEBIAN_FRONTEND=noninteractive apt install -y kas
- name: kas checkout
run: |
kas checkout kas-poky-snapd.yml
- name: kas build
run: |
kas build kas-poky-snapd.yml

0 comments on commit c8698f4

Please sign in to comment.