Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
RadxaYuntian authored Apr 24, 2023
1 parent deb23bf commit 9029969
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 10 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,18 @@
name: Monthly build
name: Build image for Release channel
on:
workflow_dispatch:
schedule:
- cron: '0 0 1 * *'

jobs:
prepare_release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get current time
uses: josStorer/get-current-time@v2
id: time
with:
format: 'YYYYMMDD-HHmm'
- name: Create empty release
id: release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.time.outputs.formattedTime }}
tag_name: b${{ github.run_number }}
body_path: README.md
token: ${{ secrets.GITHUB_TOKEN }}
target_commitish: main
Expand Down
83 changes: 83 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
name: Build image for Test channel
on:
workflow_dispatch:

jobs:
prepare_release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Create empty release
id: release
uses: softprops/action-gh-release@v1
with:
tag_name: test-build-${{ github.run_number }}
body: |
This is a test build for internal development.
Only use when specifically instructed by Radxa support.
token: ${{ secrets.GITHUB_TOKEN }}
target_commitish: main
draft: false
prerelease: true
outputs:
release_id: ${{ steps.release.outputs.id }}
build:
runs-on: ubuntu-latest
needs: prepare_release
strategy:
matrix:
boards: [rock-3c]
build_systems: [rbuild]
distros: [debian, ubuntu]
flavors: [xfce, cli]
exclude:
- build_systems: debos
distros: debian
flavors: cli
- build_systems: debos
distros: ubuntu
flavors: kde
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Upload Armbian image
uses: radxa/armbian-compile-action@main
if: matrix.build_systems == 'armbian'
with:
board: ${{ matrix.boards }}
distro: ${{ matrix.distros }}
flavor: ${{ matrix.flavors }}
release-id: ${{ needs.prepare_release.outputs.release_id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload debos-radxa image
uses: radxa/debos-build-action@main
if: matrix.build_systems == 'debos'
with:
board: ${{ matrix.boards }}
distro: ${{ matrix.distros }}
flavor: ${{ matrix.flavors }}
release-id: ${{ needs.prepare_release.outputs.release_id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload rbuild image
uses: radxa-repo/rbuild@main
if: matrix.build_systems == 'rbuild' && matrix.distros != 'buster'
with:
board: ${{ matrix.boards }}
distro: ${{ matrix.distros }}
flavor: ${{ matrix.flavors }}
release-id: ${{ needs.prepare_release.outputs.release_id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
test-repo: true
timestamp: test-build-${{ github.run_number }}
- name: Upload rbuild legacy image
uses: radxa-repo/rbuild@main
if: matrix.build_systems == 'rbuild' && matrix.distros == 'buster'
with:
board: ${{ matrix.boards }}
suite: ${{ matrix.distros }}
flavor: ${{ matrix.flavors }}
release-id: ${{ needs.prepare_release.outputs.release_id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
test-repo: true
timestamp: test-build-${{ github.run_number }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ROCK 3C
[![Build](https://github.com/radxa-build/rock-3c/actions/workflows/build.yml/badge.svg)](https://github.com/radxa-build/rock-3c/actions/workflows/build.yml)
[![Build image for Release channel](https://github.com/radxa-build/rock-3c/actions/workflows/build.yml/badge.svg)](https://github.com/radxa-build/rock-3c/actions/workflows/build.yml)[![Build image for Test channel](https://github.com/radxa-build/rock-3c/actions/workflows/test.yml/badge.svg)](https://github.com/radxa-build/rock-3c/actions/workflows/test.yml)

## What is this?

Expand Down

0 comments on commit 9029969

Please sign in to comment.