Skip to content

Commit

Permalink
Wip
Browse files Browse the repository at this point in the history
Signed-off-by: Geoffroy Jamgotchian <geoffroy.jamgotchian@gmail.com>
  • Loading branch information
geofjamg committed Oct 19, 2023
1 parent be82e40 commit ccfb4a6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,17 @@ jobs:
run: |
apt update
apt-get install -y cmake g++-4.8 gcc-4.8 liblapack-dev libblas-dev
echo ${{ github.workspace }}
echo $GITHUB_WORKSPACE
- name: Checkout sources
uses: actions/checkout@v1

- name: Configure CMake
shell: bash
run: cmake -DCMAKE_BUILD_TYPE=Release ${{ matrix.config.cmake_options }} -S $GITHUB_WORKSPACE -B $GITHUB_WORKSPACE/build-${{ matrix.config.name }}
run: cmake -DCMAKE_BUILD_TYPE=Release ${{ matrix.config.cmake_options }} -S ${{ github.workspace }} -B ${{ github.workspace }}/build-${{ matrix.config.name }}

- name: Build
shell: bash
run: cmake --build $GITHUB_WORKSPACE/build-${{ matrix.config.name }} --parallel --config Release
run: cmake --build ${{ github.workspace }}/build-${{ matrix.config.name }} --parallel --config Release

- name: Upload artifact
uses: actions/upload-artifact@v1
Expand Down

0 comments on commit ccfb4a6

Please sign in to comment.