-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor CI stuff so it is simpler and better contained (#37)
* refactor CI stuff so it is simpler and better contained * different conda setup * cancelability * remove unnecessary stuff * oops
- Loading branch information
Showing
5 changed files
with
69 additions
and
137 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Build | ||
|
||
on: [push, pull_request] | ||
|
||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
name: Compile on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [macos-latest, windows-latest, ubuntu-latest] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup MSVC environment | ||
uses: ilammy/msvc-dev-cmd@v1 | ||
if: matrix.os == 'windows-latest' | ||
|
||
- uses: mamba-org/setup-micromamba@v1 | ||
name: Setup Conda | ||
with: | ||
init-shell: bash | ||
environment-file: environment.yml | ||
environment-name: "wrench" | ||
cache-environment: true | ||
cache-downloads: true | ||
|
||
- name: Create working directory | ||
shell: bash -l {0} | ||
run: | | ||
mkdir build | ||
- name: Run cmake | ||
shell: bash -l {0} | ||
working-directory: ./build | ||
run: | | ||
if [ "$RUNNER_OS" == "Windows" ]; then | ||
export CC=cl.exe | ||
export CXX=cl.exe | ||
fi | ||
cmake -G Ninja \ | ||
-DCMAKE_INSTALL_PREFIX=${CONDA_PREFIX} \ | ||
.. | ||
- name: Build pdal_wrench | ||
shell: bash -l {0} | ||
working-directory: ./build | ||
run: | | ||
ninja | ||
ninja install |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: wrench | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- conda | ||
- mamba | ||
- compilers | ||
- ninja | ||
- cmake | ||
- pdal | ||
|