Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update URL #65

Merged
merged 1 commit into from
Nov 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sycl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 [email protected]:AMReX-Codes/CAMR.git
git clone [email protected]:AMReX-Fluids/CAMR.git
cd CAMR

# Add your own fork.
Expand All @@ -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.
Expand Down