import .zng and merging Zngur files
#230
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build-mac: | |
| runs-on: macos-14 | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: mymindstorm/setup-emsdk@v14 | |
| - name: Install Rust nightly | |
| run: | | |
| rustup toolchain install nightly | |
| rustup default nightly | |
| rustup target add wasm32-unknown-emscripten | |
| rustup component add rustfmt | |
| - name: Install Clang 19 | |
| run: brew install llvm@19 | |
| - run: CXX=$(brew --prefix llvm@19)/bin/clang++ cargo xtask ci | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| cpp_compiler: | |
| - clang++ | |
| - g++ | |
| env: | |
| CXX: ${{ matrix.cpp_compiler }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: mymindstorm/setup-emsdk@v14 | |
| - name: Install Rust nightly | |
| run: | | |
| rustup toolchain install nightly | |
| rustup default nightly | |
| rustup target add wasm32-unknown-emscripten | |
| rustup component add rustfmt | |
| - name: Install osmium | |
| run: sudo apt install libosmium2-dev | |
| - run: cargo xtask ci |