diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8a61e462b..92c987673 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,8 @@ jobs: build: strategy: matrix: - runtime: [ linux-x64, linux-arm64, linux-arm, win-x64, win-x86, osx-x64 ] + runtime: [ linux-x64, linux-arm64, linux-arm, win-x64, osx-x64 ] + # runtime: [ linux-x64, linux-arm64, linux-arm, win-x64, win-x86, osx-x64 ] include: - runtime: linux-x64 os: ubuntu-latest @@ -35,9 +36,9 @@ jobs: os: windows-latest devScript: ./dev - - runtime: win-x86 - os: windows-latest - devScript: ./dev + # - runtime: win-x86 + # os: windows-latest + # devScript: ./dev runs-on: ${{ matrix.os }} steps: diff --git a/assets.json b/assets.json index 3c310b38d..138f58f62 100644 --- a/assets.json +++ b/assets.json @@ -5,12 +5,6 @@ "version": "", "downloadUrl": "https://githubassets.azureedge.net/runners//actions-runner-win-x64-.zip" }, - { - "name": "actions-runner-win-x86-.zip", - "platform": "win-x86", - "version": "", - "downloadUrl": "https://githubassets.azureedge.net/runners//actions-runner-win-x86-.zip" - }, { "name": "actions-runner-osx-x64-.tar.gz", "platform": "osx-x64", diff --git a/azure-pipelines-release.yml b/azure-pipelines-release.yml index 749ce3837..d26de652c 100644 --- a/azure-pipelines-release.yml +++ b/azure-pipelines-release.yml @@ -42,46 +42,46 @@ stages: artifactName: runners artifactType: container - ################################################################################ - - job: build_windows_agent_x86 - ################################################################################ - displayName: Windows Agent (x86) - pool: - vmImage: vs2017-win2016 - steps: + # ################################################################################ + # - job: build_windows_agent_x86 + # ################################################################################ + # displayName: Windows Agent (x86) + # pool: + # vmImage: vs2017-win2016 + # steps: - # Steps template for windows platform - - template: windows.template.yml - parameters: - targetRuntime: win-x86 + # # Steps template for windows platform + # - template: windows.template.yml + # parameters: + # targetRuntime: win-x86 - # Package dotnet core windows dependency (VC++ Redistributable) - - powershell: | - Write-Host "Downloading 'VC++ Redistributable' package." - $outDir = Join-Path -Path $env:TMP -ChildPath ([Guid]::NewGuid()) - New-Item -Path $outDir -ItemType directory - $outFile = Join-Path -Path $outDir -ChildPath "ucrt.zip" - Invoke-WebRequest -Uri https://vstsagenttools.blob.core.windows.net/tools/ucrt/ucrt_x86.zip -OutFile $outFile - Write-Host "Unzipping 'VC++ Redistributable' package to agent layout." - $unzipDir = Join-Path -Path $outDir -ChildPath "unzip" - Add-Type -AssemblyName System.IO.Compression.FileSystem - [System.IO.Compression.ZipFile]::ExtractToDirectory($outFile, $unzipDir) - $agentLayoutBin = Join-Path -Path $(Build.SourcesDirectory) -ChildPath "_layout\bin" - Copy-Item -Path $unzipDir -Destination $agentLayoutBin -Force - displayName: Package UCRT + # # Package dotnet core windows dependency (VC++ Redistributable) + # - powershell: | + # Write-Host "Downloading 'VC++ Redistributable' package." + # $outDir = Join-Path -Path $env:TMP -ChildPath ([Guid]::NewGuid()) + # New-Item -Path $outDir -ItemType directory + # $outFile = Join-Path -Path $outDir -ChildPath "ucrt.zip" + # Invoke-WebRequest -Uri https://vstsagenttools.blob.core.windows.net/tools/ucrt/ucrt_x86.zip -OutFile $outFile + # Write-Host "Unzipping 'VC++ Redistributable' package to agent layout." + # $unzipDir = Join-Path -Path $outDir -ChildPath "unzip" + # Add-Type -AssemblyName System.IO.Compression.FileSystem + # [System.IO.Compression.ZipFile]::ExtractToDirectory($outFile, $unzipDir) + # $agentLayoutBin = Join-Path -Path $(Build.SourcesDirectory) -ChildPath "_layout\bin" + # Copy-Item -Path $unzipDir -Destination $agentLayoutBin -Force + # displayName: Package UCRT - # Create agent package zip - - script: dev.cmd package Release win-x86 - workingDirectory: src - displayName: Package Release + # # Create agent package zip + # - script: dev.cmd package Release win-x86 + # workingDirectory: src + # displayName: Package Release - # Upload agent package zip as build artifact - - task: PublishBuildArtifacts@1 - displayName: Publish Artifact (Windows) - inputs: - pathToPublish: _package - artifactName: runners - artifactType: container + # # Upload agent package zip as build artifact + # - task: PublishBuildArtifacts@1 + # displayName: Publish Artifact (Windows) + # inputs: + # pathToPublish: _package + # artifactName: runners + # artifactType: container ################################################################################ - job: build_linux_agent_x64 diff --git a/releaseNote.md b/releaseNote.md index c7fdbc3be..08c9a78bc 100644 --- a/releaseNote.md +++ b/releaseNote.md @@ -1,18 +1,17 @@ ## Features - - N/A + - Add packages for Windows x86 (win-x6), Linux ARM32 (linux-arm), Linux ARM64 (linux-arm64) ## Bugs - N/A ## Misc - - Add packages for Windows x86 (win-x6), Linux ARM32 (linux-arm), Linux ARM64 (linux-arm64) + - N/A ## Agent Downloads | | Package | | ------- | ----------------------------------------------------------------------------------------------------------- | | Windows x64 | [actions-runner-win-x64-.zip](https://githubassets.azureedge.net/runners//actions-runner-win-x64-.zip) | -| Windows x86 | [actions-runner-win-x86-.zip](https://githubassets.azureedge.net/runners//actions-runner-win-x86-.zip) | | macOS | [actions-runner-osx-x64-.tar.gz](https://githubassets.azureedge.net/runners//actions-runner-osx-x64-.tar.gz) | | Linux x64 | [actions-runner-linux-x64-.tar.gz](https://githubassets.azureedge.net/runners//actions-runner-linux-x64-.tar.gz) | | Linux arm64 | [actions-runner-linux-arm64-.tar.gz](https://githubassets.azureedge.net/runners//actions-runner-linux-arm64-.tar.gz) | @@ -27,13 +26,6 @@ C:\> mkdir myagent && cd myagent C:\myagent> Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\actions-runner-win-x64-.zip", "$PWD") ``` -## Windows x86 - -``` bash -C:\> mkdir myagent && cd myagent -C:\myagent> Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\actions-runner-win-x86-.zip", "$PWD") -``` - ## OSX ``` bash