test-online-installer #173
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
name: test-online-installer | |
on: | |
schedule: | |
- cron: '10 2 * * 1' | |
jobs: | |
test-installer: | |
name: Test Online installer - Scheduled | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Download Installer | |
run: Invoke-WebRequest https://github.com/espressif/idf-installer/releases/download/online-2.14/esp-idf-tools-setup-online-2.14.exe -OutFile installer.exe | |
shell: pwsh | |
- name: Run installer | |
run: ./src/PowerShell/Install-Idf.ps1 -IdfVersion "master" -Components "ide/rust,ide/powershell/windowsterminal,ide/powershell/desktop,ide/cmd/desktop,driver/ftdi,driver/silabs" -TmpDirectory "$env:TMP/Ň i" | |
shell: pwsh | |
- name: Build blink | |
run: ./src/PowerShell/Test-IdfCmd.ps1 -IdfShortVersion "5.0" -IdfPath "C:/Users/runneradmin/Desktop/esp-idf" | |
shell: pwsh | |
- name: Build blink in PowerShell | |
run: ./src/PowerShell/Test-IdfPowerShell.ps1 -IdfShortVersion "5.0" -IdfPath "C:/Users/runneradmin/Desktop/esp-idf" | |
shell: pwsh |