Skip to content

Commit

Permalink
Merge pull request #629 from FedML-AI/dev/v0.7.0
Browse files Browse the repository at this point in the history
Dev/v0.7.0
  • Loading branch information
fedml-alex committed Oct 27, 2022
2 parents 4027d08 + 884c734 commit e3ac995
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/smoke_test_simulation_mpi_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@ jobs:
mpi: [mpich]
# mpi: [mpich, openmpi]
os: [ ubuntu-latest ]
# include:
# - os: ubuntu-latest
# mpi: mpich
# install-mpi: sudo apt install -y mpich libmpich-dev
include:
- os: ubuntu-latest
mpi: mpich
install-mpi: sudo apt install -y mpich libmpich-dev
# - os: ubuntu-latest
# mpi: openmpi
# install-mpi: sudo apt install -y openmpi-bin libopenmpi-dev
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install MPI
run: ${{ matrix.install-mpi }}
- name: Use Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install packaging tools
Expand All @@ -54,11 +54,10 @@ jobs:
run: python -m pip wheel -vvv --wheel-dir=dist .
- name: Install test dependencies
run: python -m pip install --upgrade numpy

- name: pip install -e ./
run: |
pip install -e ./
python -m pip install mpi4py
pip install mpi4py==3.1.3
- name: Test package - FedAvg
run: |
Expand Down
2 changes: 1 addition & 1 deletion devops/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ pipeline {
container('base') {
withCredentials([usernamePassword(passwordVariable : 'DOCKERHUB_PASSWORD' ,usernameVariable : 'DOCKERHUB_USERNAME' ,credentialsId : "$DOCKERHUB_CREDENTIAL_ID" ,)]) {
sh 'docker login --username $DOCKERHUB_USERNAME --password $DOCKERHUB_PASSWORD'
sh './devops/scripts/push-fedml-docker.sh no-pushing-arm'
sh './devops/scripts/push-fedml-docker.sh'
}

withCredentials([usernamePassword(passwordVariable : 'AWS_IAM_ACCESS_ID' ,usernameVariable : 'AWS_ECR_USERNAME' ,credentialsId : "$AWS_ECR_CREDENTIAL_ID_PRODUCTION" ,)]) {
Expand Down

0 comments on commit e3ac995

Please sign in to comment.