Skip to content

fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup!… #269

fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup!…

fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup!… #269

Workflow file for this run

name: Build Gluon
on:
push:
branches:
- master
- next
- 'v20[2-9][0-9].[0-9].x'
- custom-site
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
inputs:
site:
description: 'Gluon Site Repo to use'
type: string
default: ${{ vars.GLUON_SITE_URL }}

Check failure on line 16 in .github/workflows/build-gluon.yml

View workflow run for this annotation

GitHub Actions / Build Gluon

Invalid workflow file

The workflow is not valid. .github/workflows/build-gluon.yml (Line: 16, Col: 18): Unrecognized named-value: 'vars'. Located at position 1 within expression: vars.GLUON_SITE_URL
permissions:
contents: read
jobs:
changed:
permissions:
contents: read # for dorny/paths-filter to fetch a list of changed files
pull-requests: read # for dorny/paths-filter to read pull requests
runs-on: ubuntu-latest
outputs:
targets: ${{ steps.filter.outputs.changes }}
steps:
- uses: actions/checkout@v4
# Filter targets based on changed files
- uses: dorny/paths-filter@v2
id: filter
with:
filters: .github/filters.yml
build_firmware:
needs: changed
if: ${{ needs.changed.outputs.targets != '[]' && needs.changed.outputs.targets != '' }}
strategy:
fail-fast: false
matrix:
# Read back changed targets to create build matrix
target: ${{ fromJSON(needs.changed.outputs.targets) }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: sudo contrib/actions/install-dependencies.sh
- name: Checkout Site
run: contrib/actions/checkout-site.sh
env:
GLUON_SITE_URL: ${{ vars.GLUON_SITE_URL }}
GLUON_SITE_BRANCH: ${{ vars.GLUON_SITE_BRANCH }}
- name: Build
run: contrib/actions/run-build.sh ${{ matrix.target }}
# - name: Setup upterm session
# uses: lhotari/action-upterm@v1
- name: Archive build logs
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.target }}_logs
path: openwrt/logs
- name: Archive build output
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.target }}_output
path: output