Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
101 lines
2.6 KiB
YAML
101 lines
2.6 KiB
YAML
name: Build u-boot & BSP
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
destref:
|
|
type: choice
|
|
description: Beta builds
|
|
options:
|
|
- nightly
|
|
- master
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
|
|
fake:
|
|
permissions:
|
|
contents: none
|
|
runs-on: small
|
|
name: Source changes
|
|
if: ${{ github.repository_owner == 'Armbian' }}
|
|
steps:
|
|
- run: |
|
|
echo "not empty" > changes
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
path: changes
|
|
name: changes
|
|
if-no-files-found: ignore
|
|
|
|
legacy:
|
|
permissions:
|
|
contents: none
|
|
needs: [ fake ]
|
|
uses: armbian/scripts/.github/workflows/build-u-boot-with-docker.yml@master
|
|
|
|
with:
|
|
|
|
runner: "ubuntu-latest"
|
|
include: 'grep legacy | '
|
|
exclude: ''
|
|
uploading: false
|
|
destref: ${{ github.event.inputs.destref }}
|
|
|
|
secrets:
|
|
GPG_KEY1: ${{ secrets.GPG_KEY1 }}
|
|
GPG_PASSPHRASE1: ${{ secrets.GPG_PASSPHRASE1 }}
|
|
GPG_KEY2: ${{ secrets.GPG_KEY2 }}
|
|
GPG_PASSPHRASE2: ${{ secrets.GPG_PASSPHRASE2 }}
|
|
SCRIPTS_ACCESS_TOKEN: ${{ secrets.SCRIPTS_ACCESS_TOKEN }}
|
|
SSH_KEY_TORRENTS: ${{ secrets.KEY_TORRENTS }}
|
|
KNOWN_HOSTS_UPLOAD: ${{ secrets.KNOWN_HOSTS_UPLOAD }}
|
|
|
|
current:
|
|
permissions:
|
|
contents: none
|
|
needs: [ fake ]
|
|
uses: armbian/scripts/.github/workflows/build-u-boot-with-docker.yml@master
|
|
|
|
with:
|
|
|
|
runner: "small"
|
|
include: 'grep current | '
|
|
exclude: ''
|
|
uploading: false
|
|
destref: ${{ github.event.inputs.destref }}
|
|
|
|
secrets:
|
|
GPG_KEY1: ${{ secrets.GPG_KEY1 }}
|
|
GPG_PASSPHRASE1: ${{ secrets.GPG_PASSPHRASE1 }}
|
|
GPG_KEY2: ${{ secrets.GPG_KEY2 }}
|
|
GPG_PASSPHRASE2: ${{ secrets.GPG_PASSPHRASE2 }}
|
|
SCRIPTS_ACCESS_TOKEN: ${{ secrets.SCRIPTS_ACCESS_TOKEN }}
|
|
SSH_KEY_TORRENTS: ${{ secrets.KEY_TORRENTS }}
|
|
KNOWN_HOSTS_UPLOAD: ${{ secrets.KNOWN_HOSTS_UPLOAD }}
|
|
|
|
|
|
edge:
|
|
permissions:
|
|
contents: none
|
|
needs: [ fake ]
|
|
uses: armbian/scripts/.github/workflows/build-u-boot-with-docker.yml@master
|
|
|
|
with:
|
|
|
|
runner: "small"
|
|
include: 'grep edge | '
|
|
exclude: ''
|
|
uploading: false
|
|
destref: ${{ github.event.inputs.destref }}
|
|
|
|
secrets:
|
|
GPG_KEY1: ${{ secrets.GPG_KEY1 }}
|
|
GPG_PASSPHRASE1: ${{ secrets.GPG_PASSPHRASE1 }}
|
|
GPG_KEY2: ${{ secrets.GPG_KEY2 }}
|
|
GPG_PASSPHRASE2: ${{ secrets.GPG_PASSPHRASE2 }}
|
|
SCRIPTS_ACCESS_TOKEN: ${{ secrets.SCRIPTS_ACCESS_TOKEN }}
|
|
SSH_KEY_TORRENTS: ${{ secrets.KEY_TORRENTS }}
|
|
KNOWN_HOSTS_UPLOAD: ${{ secrets.KNOWN_HOSTS_UPLOAD }}
|