Skip to content

Commit

Permalink
meta: remove references to circleci
Browse files Browse the repository at this point in the history
Closes: #7875
  • Loading branch information
bmwill authored and bors-libra committed Mar 10, 2021
1 parent 86120fd commit 6402ff8
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 12 deletions.
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
target/
!target/libra-node-builder/libra-node
**/*Dockerfile
.circleci/config.yml
docker/update_or_build.sh
1 change: 0 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Substribe to CI changes
/.circleci/ @diem/diem-oss-admin-team
/.github/ @diem/diem-oss-admin-team

# Subscribe to crypto crate changing PRs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
name: find rust/cargo changes.
uses: ./.github/actions/matches
with:
pattern: '^documentation\|^docker\|^scripts\|^.circleci'
pattern: '^documentation\|^docker\|^scripts'
invert: "true"
- id: non-rust-lint-changes
name: find shell/dockerfile changes
Expand All @@ -66,7 +66,7 @@ jobs:
name: find changes that should trigger docker compose testing.
uses: ./.github/actions/matches
with:
pattern: '^documentation\|^.circleci'
pattern: '^documentation'
invert: "true"
- id: website-changes
name: find website changes.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-update-sccache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
name: find rust/cargo changes.
uses: ./.github/actions/matches
with:
pattern: '^documentation\|^docker\|^scripts\|^.circleci'
pattern: '^documentation\|^docker\|^scripts'
invert: "true"
- uses: ./.github/actions/build-setup
if: ${{ steps.rust-changes.outputs.changes-found == 'true' }}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/land-blocking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Check kill switch
id: check_ks
run: |
if ${{ secrets.KILL_SWITCH_LAND_BLOCKING_TEST }} || ! .circleci/should_run_lbt.sh ; then
if ${{ secrets.KILL_SWITCH_LAND_BLOCKING_TEST }} || ! .github/workflow/should_run_lbt.sh ; then
echo "::set-output name=should_run::false";
else
echo "::set-output name=should_run::true";
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion developers.diem.com/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

<hr/>

[![CircleCI](https://circleci.com/gh/diem/diem.svg?style=shield)](https://circleci.com/gh/diem/diem)
[![License](https://img.shields.io/badge/license-Apache-green.svg)](LICENSE.md)

Diem Core implements a decentralized, programmable database which provides a financial infrastructure that can empower billions of people.
Expand Down
4 changes: 0 additions & 4 deletions developers.diem.com/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,3 @@ unzip diem.zip

The site is hosted on GitHub pages, via the `gh-pages` branch of the `website'
[GitHub repo](https://github.com/libra/website).

The website is automatically built and published from CircleCI - see the
[config file](https://github.com/libra/website/blob/master/.circleci/config.yml)
for details.
2 changes: 1 addition & 1 deletion x.toml
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ root-members = [

# CI-related files. TODO: maybe have separate rules for local and CI?
[[determinator.path-rule]]
globs = [".github/**/*", ".circleci/**/*", "codecov.yml"]
globs = [".github/**/*", "codecov.yml"]
mark-changed = "all"

# Core devtools files.
Expand Down

0 comments on commit 6402ff8

Please sign in to comment.