-
Notifications
You must be signed in to change notification settings - Fork 56
58 lines (52 loc) · 1.25 KB
/
build-test-deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: yocto-container build and test
on:
push:
branches:
- master
pull_request:
# Allow for manually running
workflow_dispatch:
# Run at 00:52 UTC every Saturday
schedule:
- cron: '52 0 * * 6'
jobs:
build-test-deploy:
runs-on: ubuntu-latest
permissions:
packages: write
strategy:
fail-fast: false
matrix:
distro_to_build: [
alma-8,
alma-9,
centos-7,
debian-10,
debian-11,
fedora-36,
fedora-37,
fedora-38,
opensuse-15.4,
ubuntu-18.04,
ubuntu-20.04,
ubuntu-22.04
]
targetplatform: [
linux/amd64
]
env:
DISTRO_TO_BUILD: ${{ matrix.distro_to_build }}
TARGETPLATFORM: ${{ matrix.targetplatform }}
REPO: crops/yocto
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
GHCR_USERNAME: ${{ github.actor }}
GHCR_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
# Build and test the images
- name: Run build-and-test.sh
run: ./build_container.sh
# Deploy the images
- name: Deploy
run: ./deploy.sh