Skip to content

Commit

Permalink
hardcode envs
Browse files Browse the repository at this point in the history
  • Loading branch information
netmindz committed Oct 10, 2024
1 parent d5857be commit 6b9f31f
Showing 1 changed file with 1 addition and 30 deletions.
31 changes: 1 addition & 30 deletions .github/workflows/wled-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,42 +3,13 @@ name: PlatformIO CI
on: [push, pull_request]

jobs:

get_default_envs:
name: Gather Environments
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache pip
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install PlatformIO
run: pip install -r requirements.txt
- name: Get default environments
env:
PLATFORMIO_DEFAULT_ENVS: LavaLamp, 241Rings, esp32_4MB_V4_S
id: envs
run: |
echo "environments=$(pio project config --json-output | jq -cr '.[0][1][0][1]')" >> $GITHUB_OUTPUT
outputs:
environments: ${{ steps.envs.outputs.environments }}


build:
name: Builds
runs-on: ubuntu-latest
needs: get_default_envs
strategy:
fail-fast: false
matrix:
environment: ${{ fromJSON(needs.get_default_envs.outputs.environments) }}
environment: [LavaLamp, 241Rings, esp32_4MB_V4_S]
steps:
- uses: actions/checkout@v4
- name: Cache pip
Expand Down

0 comments on commit 6b9f31f

Please sign in to comment.