Skip to content

Commit

Permalink
Fix some indentation.
Browse files Browse the repository at this point in the history
Change-Id: I2abce22ad62ed856907239157a71973eb88eb188
Reviewed-on: https://code-review.googlesource.com/c/re2/+/57818
Reviewed-by: Paul Wankadia <[email protected]>
  • Loading branch information
junyer committed Sep 27, 2020
1 parent 2548619 commit fc2c702
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
env:
BAZELISK_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- run: .github/bazel.sh
shell: bash
- uses: actions/checkout@v2
- run: .github/bazel.sh
shell: bash
6 changes: 3 additions & 3 deletions .github/workflows/ci-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- run: .github/cmake.sh
shell: bash
- uses: actions/checkout@v2
- run: .github/cmake.sh
shell: bash
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
CC: clang
CXX: clang++
steps:
- uses: actions/checkout@v2
- run: make && make test
shell: bash
- uses: actions/checkout@v2
- run: make && make test
shell: bash
build-clang:
runs-on: ubuntu-latest
strategy:
Expand All @@ -26,15 +26,15 @@ jobs:
CC: clang-${{ matrix.tag }}
CXX: clang++-${{ matrix.tag }}
steps:
- uses: actions/checkout@v2
- name: Install Clang ${{ matrix.tag }}
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x ./llvm.sh
sudo ./llvm.sh ${{ matrix.tag }}
shell: bash
- run: make && make test
shell: bash
- uses: actions/checkout@v2
- name: Install Clang ${{ matrix.tag }}
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x ./llvm.sh
sudo ./llvm.sh ${{ matrix.tag }}
shell: bash
- run: make && make test
shell: bash
build-gcc:
runs-on: ubuntu-latest
container: gcc:${{ matrix.tag }}
Expand All @@ -46,6 +46,6 @@ jobs:
CC: gcc
CXX: g++
steps:
- uses: actions/checkout@v2
- run: make && make test
shell: bash
- uses: actions/checkout@v2
- run: make && make test
shell: bash

0 comments on commit fc2c702

Please sign in to comment.