Simplify build workflow by removing macOS steps (#155) #234
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: C++ CI with Docker | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| # Only run Docker steps on Linux | |
| - name: Login to Docker Hub | |
| if: runner.os == 'Linux' | |
| run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} | |
| - name: Build and Test the Docker image | |
| if: runner.os == 'Linux' | |
| run: docker build -t astomodynamics/cddp-cpp . | |
| - name: Push the Docker image (optional) | |
| if: runner.os == 'Linux' | |
| run: docker push astomodynamics/cddp-cpp |