8000 Rework CI workflows by mcspr · Pull Request #8688 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Rework CI workflows #8688

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Oct 31, 2022
Prev Previous commit
Next Next commit
macos loses exit code
  • Loading branch information
mcspr committed Oct 15, 2022
commit 48854b29e0f284c60f01b8604017958d187de8d9
2 changes: 2 additions & 0 deletions .github/workflows/build-ide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
# Examples are built in parallel to avoid CI total job time limitation

build-linux:
if: 0
name: Linux - LwIP ${{ matrix.lwip }} (${{ matrix.chunk }})
runs-on: ubuntu-latest
defaults:
Expand Down Expand Up @@ -49,6 +50,7 @@ jobs:
# Just try to build at least one sketch, since we spend so much time with the matrix above

build-windows:
if: 0
name: Windows
runs-on: windows-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-platformio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ permissions:

jobs:
build-pio:
if: 0
name: Linux (random sketches)
runs-on: ubuntu-latest
defaults:
Expand Down
5 changes: 3 additions & 2 deletions tests/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,8 @@ function install_ide()

echo "Arduino IDE ${idever}"

local ide_path=$1
local core_path=$1
local ide_path=$2

mkdir -p ${core_path}/tools/dist
pushd ${core_path}/tools/dist
Expand Down Expand Up @@ -373,7 +374,7 @@ function install_arduino()
local debug=$1

test -d "$ESP8266_ARDUINO_IDE" \
|| install_ide "$ESP8266_ARDUINO_IDE"
|| install_ide "$ESP8266_ARDUINO_BUILD_DIR" "$ESP8266_ARDUINO_IDE"

local hardware_core_path="$ESP8266_ARDUINO_HARDWARE/esp8266com/esp8266"
test -d "$hardware_core_path" \
Expand Down
0