Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/actions/build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ runs:
- name: GN gen
run: |
cd src
cobalt/build/gn.py -p ${{ matrix.platform }} -C ${{ matrix.config }}
if [[ "${{ matrix.platform }}" == *"mac"* ]]; then
cobalt/build/gn.py -p ${{ matrix.platform }} -C ${{ matrix.config }} --no-rbe --cc_wrapper=ccache
else
cobalt/build/gn.py -p ${{ matrix.platform }} -C ${{ matrix.config }}
fi
shell: bash
- name: List GN args
run: |
Expand Down
6 changes: 6 additions & 0 deletions .github/actions/depot_tools/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ runs:
echo "target_os=['android']" >> .gclient
gclient validate
shell: bash
- name: Set target OS for Mac
if: ${{ contains(matrix.platform, 'mac') }}
run: |
echo "target_os=['mac']" >> .gclient
gclient validate
shell: bash
- name: gclient sync
if: inputs.run_sync == 'true'
run: gclient sync -v --shallow --no-history -r ${{ github.sha }}
Expand Down
10 changes: 7 additions & 3 deletions .github/actions/test_targets_json/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ runs:
using: "composite"
steps:
- name: Download Test Targets Json
uses: actions/download-artifact@v4
uses: Wandalen/action-retry@ve68c23e6309f2871ca8ae4763e7629b9c258e1ea # 3.8.0
with:
name: ${{ matrix.platform }}_test_targets_json
path:
action: actions/download-artifact@v4
with: |
name: ${{ matrix.platform }}_test_targets_json
path: .
retry_attempts: 3
retry_delay: 10000 # 10 seconds
- name: Test target count
id: parse-json
run: |
Expand Down
19 changes: 19 additions & 0 deletions .github/config/chromium_mac-arm64.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"docker_service": "",
"platforms": [
"chromium_mac-arm64"
],
"build_configs": [
"devel"
],
"targets": [
"chromedriver",
"content_shell"
],
"includes": [
{
"name": "mac",
"platform": "chromium_mac-arm64"
}
]
}
84 changes: 0 additions & 84 deletions .github/workflows/android.yaml

This file was deleted.

138 changes: 0 additions & 138 deletions .github/workflows/diff_chromium_branches.yaml

This file was deleted.

35 changes: 0 additions & 35 deletions .github/workflows/evergreen-arm-hardfp-raspi.yaml

This file was deleted.

35 changes: 0 additions & 35 deletions .github/workflows/evergreen-arm-hardfp-rdk.yaml

This file was deleted.

36 changes: 0 additions & 36 deletions .github/workflows/evergreen.yaml

This file was deleted.

Loading
Loading