From 6062c91c0ce93c9e2cabea2829f6b43a9749006c Mon Sep 17 00:00:00 2001 From: Weiqun Zhang Date: Thu, 2 Nov 2023 17:08:50 -0700 Subject: [PATCH] Update URL (#65) --- .github/workflows/cuda.yml | 4 ++-- .github/workflows/gcc.yml | 8 ++++---- .github/workflows/hip.yml | 2 +- .github/workflows/sycl.yml | 2 +- CONTRIBUTING.md | 6 +++--- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/cuda.yml b/.github/workflows/cuda.yml index 4ce8605..e7d4a00 100644 --- a/.github/workflows/cuda.yml +++ b/.github/workflows/cuda.yml @@ -13,7 +13,7 @@ concurrency: jobs: cuda_eb_2d: - if: ${{ github.repository == 'AMReX-Codes/CAMR' || github.event_name != 'schedule' }} + if: ${{ github.repository == 'AMReX-Fluids/CAMR' || github.event_name != 'schedule' }} name: CUDA EB 2D runs-on: ubuntu-20.04 steps: @@ -57,7 +57,7 @@ jobs: du -hs ~/.cache/ccache cuda_no_eb_2d: - if: ${{ github.repository == 'AMReX-Codes/CAMR' || github.event_name != 'schedule' }} + if: ${{ github.repository == 'AMReX-Fluids/CAMR' || github.event_name != 'schedule' }} name: CUDA NO EB 2D runs-on: ubuntu-20.04 steps: diff --git a/.github/workflows/gcc.yml b/.github/workflows/gcc.yml index ad76bde..53dc582 100644 --- a/.github/workflows/gcc.yml +++ b/.github/workflows/gcc.yml @@ -13,7 +13,7 @@ concurrency: jobs: gcc_eb_3d: - if: ${{ github.repository == 'AMReX-Codes/CAMR' || github.event_name != 'schedule' }} + if: ${{ github.repository == 'AMReX-Fluids/CAMR' || github.event_name != 'schedule' }} name: GCC EB 3D runs-on: ubuntu-latest steps: @@ -67,7 +67,7 @@ jobs: mpiexec -n 2 ./CAMR3d.gnu.MPI.EB.ex inputs max_step=3 gcc_no_eb_3d: - if: ${{ github.repository == 'AMReX-Codes/CAMR' || github.event_name != 'schedule' }} + if: ${{ github.repository == 'AMReX-Fluids/CAMR' || github.event_name != 'schedule' }} name: GCC NO EB 3D runs-on: ubuntu-latest steps: @@ -121,7 +121,7 @@ jobs: mpiexec -n 2 ./CAMR3d.gnu.MPI.ex inputs-x max_step=3 gcc_eb_2d: - if: ${{ github.repository == 'AMReX-Codes/CAMR' || github.event_name != 'schedule' }} + if: ${{ github.repository == 'AMReX-Fluids/CAMR' || github.event_name != 'schedule' }} name: GCC EB 2D runs-on: ubuntu-latest steps: @@ -176,7 +176,7 @@ jobs: ./CAMR2d.gnu.OMP.EB.ex inputs max_step=10 gcc_no_eb_2d: - if: ${{ github.repository == 'AMReX-Codes/CAMR' || github.event_name != 'schedule' }} + if: ${{ github.repository == 'AMReX-Fluids/CAMR' || github.event_name != 'schedule' }} name: GCC NO EB 2D runs-on: ubuntu-latest steps: diff --git a/.github/workflows/hip.yml b/.github/workflows/hip.yml index 403b68a..8864934 100644 --- a/.github/workflows/hip.yml +++ b/.github/workflows/hip.yml @@ -13,7 +13,7 @@ concurrency: jobs: hip_eb_3d: - if: ${{ github.repository == 'AMReX-Codes/CAMR' || github.event_name != 'schedule' }} + if: ${{ github.repository == 'AMReX-Fluids/CAMR' || github.event_name != 'schedule' }} name: HIP EB 3D runs-on: ubuntu-20.04 steps: diff --git a/.github/workflows/sycl.yml b/.github/workflows/sycl.yml index 8b119b8..0c1f15a 100644 --- a/.github/workflows/sycl.yml +++ b/.github/workflows/sycl.yml @@ -13,7 +13,7 @@ concurrency: jobs: sycl_no_eb_3d: - if: ${{ github.repository == 'AMReX-Codes/CAMR' || github.event_name != 'schedule' }} + if: ${{ github.repository == 'AMReX-Fluids/CAMR' || github.event_name != 'schedule' }} name: SYCL NO EB 3D runs-on: ubuntu-latest steps: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 48ead96..7d9ec51 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -51,14 +51,14 @@ your fork. `development` on the main CAMR repository. First, let us setup your local git repo. To make your own fork of the main -repository, press the fork button on the [CAMR Github page](https://github.com/AMReX-Codes/CAMR). +repository, press the fork button on the [CAMR Github page](https://github.com/AMReX-Fluids/CAMR). Then, clone CAMR on your local computer. If you plan on doing a lot of CAMR development, we recommend configuring your clone to use ssh access so you won't have to enter your Github password every time, which you can do using these commands: ``` -git clone git@github.com:AMReX-Codes/CAMR.git +git clone git@github.com:AMReX-Fluids/CAMR.git cd CAMR # Add your own fork. @@ -78,7 +78,7 @@ machine, see If you instead prefer to use HTTPS authentication, configure your local clone as follows: ``` -git clone https://github.com/AMReX-Codes/CAMR.git +git clone https://github.com/AMReX-Fluids/CAMR.git cd CAMR # Add your own fork.