-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/0_15' into 0_15_trig_math
- Loading branch information
Showing
66 changed files
with
976 additions
and
631 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: WLED Build | ||
|
||
# Only included into other workflows | ||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
|
||
get_default_envs: | ||
name: Gather Environments | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
cache: 'pip' | ||
- name: Install PlatformIO | ||
run: pip install -r requirements.txt | ||
- name: Get default environments | ||
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: Build Enviornments | ||
runs-on: ubuntu-latest | ||
needs: get_default_envs | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
environment: ${{ fromJSON(needs.get_default_envs.outputs.environments) }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
cache: 'npm' | ||
- run: npm ci | ||
- name: Cache PlatformIO | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.platformio/.cache | ||
~/.buildcache | ||
build_output | ||
key: pio-${{ runner.os }}-${{ matrix.environment }}-${{ hashFiles('platformio.ini', 'pio-scripts/output_bins.py') }}-${{ hashFiles('wled00/**', 'usermods/**') }} | ||
restore-keys: pio-${{ runner.os }}-${{ matrix.environment }}-${{ hashFiles('platformio.ini', 'pio-scripts/output_bins.py') }}- | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
cache: 'pip' | ||
- name: Install PlatformIO | ||
run: pip install -r requirements.txt | ||
- name: Build firmware | ||
run: pio run -e ${{ matrix.environment }} | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: firmware-${{ matrix.environment }} | ||
path: | | ||
build_output/release/*.bin | ||
build_output/release/*_ESP02*.bin.gz | ||
testCdata: | ||
name: Test cdata.js | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.x' | ||
cache: 'npm' | ||
- run: npm ci | ||
- run: npm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: WLED Release CI | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
|
||
wled_build: | ||
uses: ./.github/workflows/build.yml | ||
|
||
release: | ||
name: Create Release | ||
runs-on: ubuntu-latest | ||
needs: wled_build | ||
steps: | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
merge-multiple: true | ||
- name: Create draft release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
draft: True | ||
files: | | ||
*.bin | ||
*.bin.gz | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,94 +1,11 @@ | ||
name: WLED CI | ||
|
||
on: [push, pull_request] | ||
on: | ||
push: | ||
branches: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
|
||
get_default_envs: | ||
name: Gather Environments | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
cache: 'pip' | ||
- name: Install PlatformIO | ||
run: pip install -r requirements.txt | ||
- name: Get default environments | ||
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: Build Enviornments | ||
runs-on: ubuntu-latest | ||
needs: get_default_envs | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
environment: ${{ fromJSON(needs.get_default_envs.outputs.environments) }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
cache: 'npm' | ||
- run: npm ci | ||
- name: Cache PlatformIO | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.platformio/.cache | ||
~/.buildcache | ||
build_output | ||
key: pio-${{ runner.os }}-${{ matrix.environment }}-${{ hashFiles('platformio.ini', 'pio-scripts/output_bins.py') }}-${{ hashFiles('wled00/**', 'usermods/**') }} | ||
restore-keys: pio-${{ runner.os }}-${{ matrix.environment }}-${{ hashFiles('platformio.ini', 'pio-scripts/output_bins.py') }}- | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
cache: 'pip' | ||
- name: Install PlatformIO | ||
run: pip install -r requirements.txt | ||
- name: Build firmware | ||
run: pio run -e ${{ matrix.environment }} | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: firmware-${{ matrix.environment }} | ||
path: | | ||
build_output/release/*.bin | ||
build_output/release/*_ESP02*.bin.gz | ||
release: | ||
name: Create Release | ||
runs-on: ubuntu-latest | ||
needs: build | ||
if: startsWith(github.ref, 'refs/tags/') | ||
steps: | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
merge-multiple: true | ||
- name: Create draft release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
draft: True | ||
files: | | ||
*.bin | ||
*.bin.gz | ||
testCdata: | ||
name: Test cdata.js | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.x' | ||
cache: 'npm' | ||
- run: npm ci | ||
- run: npm test | ||
wled_build: | ||
uses: ./.github/workflows/build.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.