Skip to content

Commit

Permalink
[rename] broad rename of crates diem -> aptos
Browse files Browse the repository at this point in the history
  • Loading branch information
davidiw committed Mar 7, 2022
1 parent 646a2eb commit 212bb55
Show file tree
Hide file tree
Showing 2,556 changed files with 7,119 additions and 7,088 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
resource_class: medium
steps:
- dev-setup
- run: cargo nextest --nextest-profile ci --package diem-crypto --features='u32' --no-default-features
- run: cargo nextest --nextest-profile ci --package diem-crypto --features='u64' --no-default-features
- run: cargo nextest --nextest-profile ci --package aptos-crypto --features='u32' --no-default-features
- run: cargo nextest --nextest-profile ci --package aptos-crypto --features='u64' --no-default-features
lint:
docker:
- image: cimg/base:2020.01
Expand Down
35 changes: 0 additions & 35 deletions .github/CODEOWNERS

This file was deleted.

16 changes: 8 additions & 8 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
# needs: prepare
# if: ${{ needs.prepare.outputs.test-rust == 'true' && needs.prepare.outputs.test-compatibility == 'true' }}
# container:
# image: ghcr.io/diem/diem_build_environment:${{ needs.prepare.outputs.changes-target-branch }}
# image: ghcr.io/diem/aptos_build_environment:${{ needs.prepare.outputs.changes-target-branch }}
# volumes:
# - "${{github.workspace}}:/opt/git/diem"
# steps:
Expand Down Expand Up @@ -202,9 +202,9 @@ jobs:
# with:
# ref: ${{ github.event.pull_request.head.sha }}
# - name: build validator docker image
# run: docker/diem-build.sh docker/validator/Dockerfile diem/validator:test
# run: docker/aptos-build.sh docker/validator/Dockerfile diem/validator:test
# - name: build faucet image
# run: docker/diem-build.sh docker/faucet/Dockerfile diem/faucet:test
# run: docker/aptos-build.sh docker/faucet/Dockerfile diem/faucet:test
# - name: run validator-client test
# run: docker/compose/test_docker_compose.sh
# env:
Expand Down Expand Up @@ -265,7 +265,7 @@ jobs:
# run: |
# echo "Sleep 30s while fullnode starts"
# sleep 30
# kubectl wait -l statefulset.kubernetes.io/pod-name=fullnode-diem-fullnode-0 --for=condition=ready pod --timeout=5m
# kubectl wait -l statefulset.kubernetes.io/pod-name=fullnode-aptos-fullnode-0 --for=condition=ready pod --timeout=5m
# echo "Sleep 1m while fullnode syncs"
# sleep 60
# kubectl get pods
Expand All @@ -283,9 +283,9 @@ jobs:
# kubectl describe pvc
# echo "===== pods ====="
# kubectl get pods
# kubectl describe pod fullnode-diem-fullnode-0
# kubectl logs fullnode-diem-fullnode-0
# kubectl logs fullnode-diem-fullnode-sync-test
# kubectl describe pod fullnode-aptos-fullnode-0
# kubectl logs fullnode-aptos-fullnode-0
# kubectl logs fullnode-aptos-fullnode-sync-test
# - name: Clean up
# if: ${{ always() }}
# run: minikube delete
Expand All @@ -302,7 +302,7 @@ jobs:
# needs: prepare
# if: ${{ needs.prepare.outputs.test-api-spec == 'true' }}
# container:
# image: ghcr.io/diem/diem_build_environment:${{ needs.prepare.outputs.changes-target-branch }}
# image: ghcr.io/diem/aptos_build_environment:${{ needs.prepare.outputs.changes-target-branch }}
# volumes:
# - "${{github.workspace}}:/opt/git/diem"
# steps:
Expand Down
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Temporary Items
.apdisk

# Generated VM config in vm-genesis
diem-move/vm-genesis/genesis/vm_config.toml
aptos-move/vm-genesis/genesis/vm_config.toml

# Terraform
.terraform/
Expand All @@ -59,8 +59,9 @@ build/

# Do not ignore the Move build output under the releases for DPN, core, and
# experimental -- these are the release code.
!diem-move/diem-framework/DPN/releases/artifacts/**
!diem-move/diem-framework/experimental/releases/artifacts/**
!aptos-move/diem-framework/DPN/releases/artifacts/**
!aptos-move/diem-framework/experimental/releases/artifacts/**
!aptos-move/diem-framework/aptos-framework/releases/artifacts/**

# Docker incremental build temporary files and directories
target-out-docker
Expand Down
Loading

0 comments on commit 212bb55

Please sign in to comment.