Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ jobs:

runs-on: ubuntu-latest

permissions:
issues: write

steps:
- name: Checkout repo
uses: actions/checkout@v5
Expand All @@ -39,5 +36,4 @@ jobs:
idf_target: ${{ env.IDF_TARGET }}
idf_version: ${{ env.IDF_VERSION }}
idf_component_manager: ${{ env.IDF_COMPONENT_MANAGER }}
base_ref: ${{ github.event.pull_request.base.sha }}
flash_total_override: ${{ env.FLASH_TOTAL_OVERRIDE }}
15 changes: 0 additions & 15 deletions .github/workflows/package_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,31 +71,16 @@ jobs:
build/flasher_args.json
build/flash_args

- name: Determine base ref
if: ${{ github.event.release && github.event.action == 'published' }}
id: base
shell: bash
run: |
set -euo pipefail
# use the previous tag chronologically
prev=$(git tag --sort=-creatordate | sed -n '2p')
if [ -z "$prev" ]; then prev=$(git tag --sort=-v:refname | sed -n '2p'); fi
echo "ref=$prev" >> "$GITHUB_OUTPUT"

- name: Determine Size Delta
if: ${{ github.event.release && github.event.action == 'published' }}
uses: esp-cpp/esp-idf-size-delta@v1
with:
app_name: ${{ env.APP_NAME }}
app_path: "."
head_name: "${{ github.event.release.tag_name }}"
base_name: "${{ steps.base.outputs.ref }}"
idf_target: ${{ env.IDF_TARGET }}
idf_version: ${{ env.IDF_VERSION }}
idf_component_manager: ${{ env.IDF_COMPONENT_MANAGER }}
base_ref: ${{ steps.base.outputs.ref }}
flash_total_override: ${{ env.FLASH_TOTAL_OVERRIDE }}
post_comment: 'false'

package:
name: Package the binaries into an executables for Windows, MacOS, and Linux (Ubuntu)
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/static_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ jobs:
static_analysis:
runs-on: ubuntu-latest

permissions:
issues: write

steps:
- name: Checkout repo
uses: actions/checkout@v5
Expand Down