Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iambriccardo committed Jan 7, 2025
1 parent 9bcfbb3 commit c91a610
Showing 1 changed file with 2 additions and 19 deletions.
21 changes: 2 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,28 +201,11 @@ jobs:
if [[ "$FULL_CI" == "true" ]]; then
echo "Running full CI"
echo 'image_names=["relay", "relay-pop"]' >> $GITHUB_OUTPUT
echo 'targets=[
{
"target": "x86_64-unknown-linux-gnu",
"runner": "ubuntu-20.04",
"platform": "linux/amd64"
},
{
"target": "aarch64-unknown-linux-gnu",
"runner": "ubuntu-22.04-arm",
"platform": "linux/arm64"
}
]' >> $GITHUB_OUTPUT
echo 'targets=[{"target":"x86_64-unknown-linux-gnu","runner":"ubuntu-20.04","platform":"linux/amd64"},{"target":"aarch64-unknown-linux-gnu","runner":"ubuntu-22.04-arm","platform":"linux/arm64"}]' >> $GITHUB_OUTPUT
else
echo "Skipping some CI steps"
echo 'image_names=["relay"]' >> $GITHUB_OUTPUT
echo 'targets=[
{
"target": "x86_64-unknown-linux-gnu",
"runner": "ubuntu-20.04",
"platform": "linux/amd64"
}
]' >> $GITHUB_OUTPUT
echo 'targets=[{"target":"x86_64-unknown-linux-gnu","runner":"ubuntu-20.04","platform":"linux/amd64"}]' >> $GITHUB_OUTPUT
fi
outputs:
image_names: "${{ steps.set-outputs.outputs.image_names }}"
Expand Down

0 comments on commit c91a610

Please sign in to comment.