Skip to content

Commit

Permalink
cascading-runs: also build ARM64 artifacts
Browse files Browse the repository at this point in the history
The git-artifacts pipeline supports ARM64 (aarch64) since a couple months. We've been triggering the pipeline manually until now, with good results, so let's start triggering it automatically moving forward.

Signed-off-by: Dennis Ameling <dennis@dennisameling.com>
  • Loading branch information
dennisameling committed Nov 18, 2024
1 parent c4475aa commit 72e5b1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GitForWindowsHelper/cascading-runs.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const triggerGitArtifactsRuns = async (context, checkRunOwner, checkRunRepo, tag

const architecturesToTrigger = []
const { listCheckRunsForCommit, queueCheckRun } = require('./check-runs')
for (const architecture of ['x86_64', 'i686']) {
for (const architecture of ['x86_64', 'i686', 'aarch64']) {
const workflowName = `git-artifacts-${architecture}`
const runs = await listCheckRunsForCommit(
context,
Expand Down

0 comments on commit 72e5b1d

Please sign in to comment.