Skip to content

Commit

Permalink
drop windows x86
Browse files Browse the repository at this point in the history
  • Loading branch information
zawata committed Apr 2, 2024
1 parent 95f5811 commit e068680
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ jobs:
exclude:
- os: macos-11
arch: x86
- os: windows-2019
arch: x86
timeout-minutes: 20
steps:
# We need to use Xcode 11.7 for maximum compatibility with older macOS (x64)
Expand Down
7 changes: 0 additions & 7 deletions dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,6 @@
"filename": "PortableGit-2.44.0-64-bit.7z.exe",
"url": "https://github.com/git-for-windows/git/releases/download/v2.44.0.windows.1/PortableGit-2.44.0-64-bit.7z.exe",
"checksum": "1fc64ca91b9b475ab0ada72c9f7b3addbe69a6c8f520be31425cf21841cca369"
},
{
"platform": "windows",
"arch": "x86",
"filename": "PortableGit-2.44.0-32-bit.7z.exe",
"url": "https://github.com/git-for-windows/git/releases/download/v2.44.0.windows.1/PortableGit-2.44.0-32-bit.7z.exe",
"checksum": "e70c80672069907961f6db68b0db5e14ea0447f39c74cfd3c385882f3b934c6f"
}
]
},
Expand Down
4 changes: 2 additions & 2 deletions script/generate-release-notes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import * as fs from 'fs'
import { Octokit } from '@octokit/rest'

export default class GenerateReleaseNotes {
// eight targeted OS/arch combinations
// seven targeted OS/arch combinations
// two files for each targeted OS/arch
// two checksum files for the previous
private SUCCESSFUL_RELEASE_FILE_COUNT = 8 * 2 * 2
private SUCCESSFUL_RELEASE_FILE_COUNT = 7 * 2 * 2
private args = process.argv.slice(2)
private expectedArgs = [
{
Expand Down
5 changes: 2 additions & 3 deletions script/update-git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,13 +204,12 @@ async function run() {
}

const package64bit = await getPackageDetails(assets, body, 'amd64')
const package32bit = await getPackageDetails(assets, body, 'x86')

if (package64bit == null || package32bit == null) {
if (package64bit == null) {
return
}

updateGitDependencies(latestGitVersion, [package64bit, package32bit])
updateGitDependencies(latestGitVersion, [package64bit])

console.log(
`✅ Updated dependencies metadata to Git ${latestGitVersion} (Git for Windows ${version})`
Expand Down

0 comments on commit e068680

Please sign in to comment.