-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from buildbarn/cgo
Use cgo platforms and disable 32-bit builds in CI
- Loading branch information
Showing
4 changed files
with
59 additions
and
58 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
diff --git tools/github_workflows/workflows_template.libsonnet tools/github_workflows/workflows_template.libsonnet | ||
index 1016937..5bee227 100644 | ||
--- tools/github_workflows/workflows_template.libsonnet | ||
+++ tools/github_workflows/workflows_template.libsonnet | ||
@@ -6,18 +6,6 @@ | ||
buildJustBinaries: false, | ||
extension: '', | ||
}, | ||
- { | ||
- name: 'linux_386', | ||
- buildAndTestCommand: 'test --test_output=errors', | ||
- buildJustBinaries: false, | ||
- extension: '', | ||
- }, | ||
- { | ||
- name: 'linux_arm', | ||
- buildAndTestCommand: 'build', | ||
- buildJustBinaries: false, | ||
- extension: '', | ||
- }, | ||
{ | ||
name: 'linux_arm64', | ||
buildAndTestCommand: 'build', | ||
@@ -192,12 +180,12 @@ | ||
'master.yaml': { | ||
name: 'master', | ||
on: { push: { branches: ['main', 'master'] } }, | ||
- jobs: getJobs(binaries, containers, true, false), | ||
+ jobs: getJobs(binaries, containers, true, true), | ||
}, | ||
'pull-requests.yaml': { | ||
name: 'pull-requests', | ||
on: { pull_request: { branches: ['main', 'master'] } }, | ||
- jobs: getJobs(binaries, containers, false, false), | ||
+ jobs: getJobs(binaries, containers, false, true), | ||
}, | ||
}, | ||
} |