Skip to content

Commit

Permalink
drop all 32-bit builds
Browse files Browse the repository at this point in the history
  • Loading branch information
zawata committed Jul 9, 2024
1 parent 4c701d2 commit b71dbd3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 29 deletions.
18 changes: 0 additions & 18 deletions dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,30 +20,12 @@
"name": "git-lfs-linux-amd64-v3.5.1.tar.gz",
"checksum": "6f28eb19faa7a968882dca190d92adc82493378b933958d67ceaeb9ebe4d731e"
},
{
"platform": "linux",
"arch": "x86",
"name": "git-lfs-linux-386-v3.5.1.tar.gz",
"checksum": "4436bbc404427b2ca24108582cb1945dd806851d8634d287b8f37fb211718bee"
},
{
"platform": "linux",
"arch": "arm64",
"name": "git-lfs-linux-arm64-v3.5.1.tar.gz",
"checksum": "4f8700aacaa0fd26ae5300fb0996aed14d1fd0ce1a63eb690629c132ff5163a9"
},
{
"platform": "linux",
"arch": "arm",
"name": "git-lfs-linux-arm-v3.5.1.tar.gz",
"checksum": "03923d8badf5c382920390414ad7084c5d87b246b180474d09961e3831f552e2"
},
{
"platform": "windows",
"arch": "x86",
"name": "git-lfs-windows-386-v3.5.1.zip",
"checksum": "ea5138789c4f19ed71d30c3e407f43bd270771028d37e5292378a8ea2c154377"
},
{
"platform": "windows",
"arch": "amd64",
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 {
// seven targeted OS/arch combinations
// five targeted OS/arch combinations
// two files for each targeted OS/arch
// two checksum files for the previous
private SUCCESSFUL_RELEASE_FILE_COUNT = 7 * 2 * 2
private SUCCESSFUL_RELEASE_FILE_COUNT = 5 * 2 * 2
private args = process.argv.slice(2)
private expectedArgs = [
{
Expand Down
9 changes: 0 additions & 9 deletions script/update-git-lfs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,9 @@ function getArch(fileName: string) {
if (fileName.match(/-amd64-/)) {
return 'amd64'
}
if (fileName.match(/-386-/)) {
return 'x86'
}
if (fileName.match(/-arm64-/)) {
return 'arm64'
}
if (fileName.match(/-arm-/)) {
return 'arm'
}

throw new Error(`Unable to find arch for file: ${fileName}`)
}
Expand Down Expand Up @@ -88,10 +82,7 @@ async function run(): Promise<boolean> {

const files = [
`git-lfs-linux-amd64-${version}.tar.gz`,
`git-lfs-linux-386-${version}.tar.gz`,
`git-lfs-linux-arm64-${version}.tar.gz`,
`git-lfs-linux-arm-${version}.tar.gz`,
`git-lfs-windows-386-${version}.zip`,
`git-lfs-windows-amd64-${version}.zip`,
]

Expand Down

0 comments on commit b71dbd3

Please sign in to comment.