Skip to content

Commit

Permalink
Remove Chromium Android debug builds.
Browse files Browse the repository at this point in the history
b/385214079
  • Loading branch information
briantting committed Dec 20, 2024
1 parent 6fe94b3 commit 8d04f9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,15 +156,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
# TODO(bug?): android debug builds are broken.
if: ${{ ! (startsWith(matrix.platform, 'android') && matrix.config == 'debug') }}
if: ${{ ! (contains(matrix.platform, 'android') && matrix.config == 'debug') }}
with:
path: src
# Use fetch depth of 0 to get full history for a valid build id.
fetch-depth: 0
- name: Build Cobalt
uses: ./src/.github/actions/build
# TODO(bug?): android debug builds are broken.
if: ${{ ! (startsWith(matrix.platform, 'android') && matrix.config == 'debug') }}
if: ${{ ! (contains(matrix.platform, 'android') && matrix.config == 'debug') }}
with:
targets: ${{ needs.initialize.outputs.targets }}
- name: Upload Test Artifacts
Expand Down

0 comments on commit 8d04f9a

Please sign in to comment.