File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ jobs:
105
105
echo "Warning: coprocessor_fw_version.txt not found"
106
106
fi
107
107
108
- 7z a -mx=9 -tzip -xr'!.*' framework-arduinoespressif32-${idf_version_string}.zip framework-arduinoespressif32/
108
+ tar --exclude=.* -Jcf framework-arduinoespressif32-${idf_version_string}.tar.xz framework-arduinoespressif32/
109
109
110
110
- name : Set tag name
111
111
id : set_tag_name
@@ -121,7 +121,7 @@ jobs:
121
121
body_path : release-info.txt
122
122
prerelease : true
123
123
files : |
124
- framework-arduinoespressif32-*.zip
124
+ framework-arduinoespressif32-*.tar.xz
125
125
release-info.txt
126
126
env :
127
127
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ idf_version_string=${IDF_BRANCH//\//_}"-$IDF_COMMIT"
4
4
5
5
archive_path=" dist/arduino-esp32-libs-$TARGET -$idf_version_string .tar.gz"
6
6
build_archive_path=" dist/arduino-esp32-build-$TARGET -$idf_version_string .tar.gz"
7
- pio_archive_path=" dist/framework-arduinoespressif32-$TARGET -$idf_version_string .tar.gz "
7
+ pio_archive_path=" dist/framework-arduinoespressif32-$TARGET -$idf_version_string .tar.xz "
8
8
pio_zip_archive_path=" dist/framework-arduinoespressif32-$TARGET -$idf_version_string .zip"
9
9
10
10
mkdir -p dist && rm -rf " $archive_path " " $build_archive_path "
@@ -67,5 +67,5 @@ cd ../../../
67
67
68
68
if [[ -z " $GITHUB_ACTIONS " ]]; then
69
69
echo " Creating PlatformIO Tasmota framework-arduinoespressif32"
70
- 7z a -mx=9 -tzip -xr ' !.* ' ../ $pio_zip_archive_path framework-arduinoespressif32/
70
+ tar --exclude=. * -Jcf ../ $pio_archive_path framework-arduinoespressif32/
71
71
fi
Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
7
7
brew install gperf || true
8
8
brew install ninja || true
9
9
brew install ccache || true
10
- brew install 7zip || true
10
+ brew install xz || true
11
11
brew install uv || true
12
12
uv venv
13
13
uv pip install future pyelftools
14
14
else
15
15
echo " Linux detected. Install dependencies..."
16
- sudo apt update && sudo apt install -y gperf cmake ninja-build ccache p7zip-full
16
+ sudo apt update && sudo apt install -y gperf cmake ninja-build ccache xz-utils
17
17
curl -LsSf https://astral.sh/uv/install.sh | sh
18
18
uv venv
19
19
uv pip install future pyelftools
You can’t perform that action at this time.
0 commit comments