Skip to content

checkout correct branch #408

checkout correct branch

checkout correct branch #408

Workflow file for this run

name: build
# Controls when the action will run.
# Triggers the workflow on push or pull request events but only for the master branch
# Allows you to run this workflow manually from the Actions tab
on: [push, pull_request, workflow_dispatch]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
matrix:
PLATFORM: [pi]
DISTRO: [bullseye]
env:
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }}
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it

Check failure on line 23 in .github/workflows/buildPi.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/buildPi.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 10
- name: Install depencies
run: |
sudo apt update
sudo apt install bc bison ccache gcc-arm-linux-gnueabihf fakeroot flex git kmod libelf-dev libssl-dev make python3-pip ruby
sudo gem install --no-document fpm
sudo pip3 install --upgrade cloudsmith-cli
- name: Setup env
run: |
ccache --set-config=compiler_check=content && ccache --set-config=hash_dir=false
echo "DT=$(date +'%Y-%m-%d_%H%M')" >> $GITHUB_ENV
echo "BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Setup cache
id: cache
uses: actions/cache@v2
with:
path: ~/.ccache
key: ${{ runner.os }}-ccache
restore-keys: |
${{ runner.os }}-ccache
${{ runner.os }}-ccache-
- name: Build ${{ matrix.PLATFORM }} ${{ matrix.DISTRO }}
run: |
export PATH=/usr/lib/ccache:$PATH
bash buildwithlog.sh ${{ matrix.PLATFORM }} ${{ matrix.DISTRO }} ONLINE
- name: Compose release filename
# https://stackoverflow.com/questions/58033366/how-to-get-current-branch-within-github-actions
run: echo "artifact_name=ohd-kernel-${{ matrix.PLATFORM }}-${{ matrix.DISTRO }}-${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Push
id: push
uses: cloudsmith-io/action@master
with:
api-key: ${{ secrets.CLOUDSMITH_API_KEY }}
command: "push"
format: "deb"
owner: "openhd"
repo: "release"
distro: "raspbian"
release: "bullseye"
republish: "true" # needed ONLY if version is not changing
file: "*.deb"
if: ${{ github.ref != 'refs/heads/2.5-evo' }}
- name: Package firmware ${{ matrix.PLATFORM }} ${{ matrix.DISTRO }}
uses: 'actions/upload-artifact@v2'
with:
name: "${{ env.artifact_name }}"
path: |
*.deb
*.log
if-no-files-found: error