Skip to content

Commit

Permalink
changing to build in local container
Browse files Browse the repository at this point in the history
  • Loading branch information
scottenglert committed Apr 6, 2022
1 parent a05a05d commit a382492
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,12 @@ jobs:

- name: Configure CMake
run: |
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DMAYA_VERSION=${{matrix.maya}} -DMAYA_DEVKIT_ROOT="/usr/autodesk/devkitBase"
cmake -B ./build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DMAYA_VERSION=${{matrix.maya}} -DMAYA_DEVKIT_ROOT="/usr/autodesk/devkitBase"
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
run: cmake --build ./build --config ${{env.BUILD_TYPE}}

- run: find ${{github.workspace}}/build -not -path '*/\.*'
- run: find ./build -not -path '*/\.*'

- name: Artifacts
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit a382492

Please sign in to comment.