Skip to content

import .zng and merging Zngur files #231

import .zng and merging Zngur files

import .zng and merging Zngur files #231

Workflow file for this run

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