Skip to content

Commit

Permalink
set my configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukaswnd authored and Lukaswnd committed Jun 5, 2024
1 parent 2542bce commit 16dd4bb
Show file tree
Hide file tree
Showing 40 changed files with 938 additions and 933 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/build_manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Manual Build

on:
workflow_dispatch:
inputs:
target:
type: choice
description: Choose Target
default: 'all'
options:
- 'all'
- 'esp32'
- 'esp32s2'
- 'esp32s3'
- 'esp32c3'
- 'esp32c6'
- 'esp32h2'
log_level:
type: choice
description: Choose Log Level
default: 'default'
options:
- 'default'
- 'none'
- 'verbose'
- 'debug'
- 'info'
- 'warning'
- 'error'

jobs:
run:
name: Build ${{ github.ref_name }} SDK For ${{ github.event.inputs.target }} as ${{ github.event.inputs.log_level }}

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install dependencies
run: bash ./tools/prepare-ci.sh

- name: Build
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_RUN_NUMBER: ${{ github.run_number }}
run: |
export TARGET_TYPE=${{ github.event.inputs.target }}
export LOG_LEVEL=${{ github.event.inputs.log_level }}
echo "Building for $TARGET_TYPE (log_level: $LOG_LEVEL)"
bash ./build.sh -e -d -t $TARGET_TYPE -D $LOG_LEVEL
- name: Release
uses: jason2866/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: "3.0.0.${{ github.run_number }}"
files: |
dist/framework*
144 changes: 0 additions & 144 deletions .github/workflows/cron.yml

This file was deleted.

81 changes: 0 additions & 81 deletions .github/workflows/docker.yml

This file was deleted.

67 changes: 0 additions & 67 deletions .github/workflows/push.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/repository_dispatch.yml

This file was deleted.

Loading

0 comments on commit 16dd4bb

Please sign in to comment.