blob: 5c4f783e6aa8c661f7bc19cdd78e7254b1a6751d [file] [log] [blame]
name: Setup CI Runner
# TODO(b/267357823) Consider moving this to it's own repository and include
# a call to actions/checkout.
description: Setup any platform-specific adjustments we need to make for CI
runs:
using: 'composite'
steps:
- name: Fix Windows line breaks
if: runner.os == 'Windows'
shell: bash
run: find . -type f -print0 | xargs -0 d2u 2>/dev/null
- name: Install bazelrc files
shell: bash
run: |
cp ci/*.bazelrc .
cp -f ${{ runner.os }}.bazelrc .bazelrc