Bump ahash from 0.8.5 to 0.8.6 #509
Workflow file for this run
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
# | |
# Copyright © 2020-present Peter M. Stahl [email protected] | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either expressed or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: build | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'Cargo.lock' | |
- 'Cargo.toml' | |
- 'src/**' | |
- 'tests/**' | |
- '**.yml' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'Cargo.lock' | |
- 'Cargo.toml' | |
- 'src/**' | |
- 'tests/**' | |
- '**.yml' | |
jobs: | |
build-and-test: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
include: | |
- os: ubuntu-latest | |
name: Linux Binary 64-Bit | |
target: x86_64-unknown-linux-musl | |
- os: macos-latest | |
name: MacOS Binary 64-Bit | |
target: x86_64-apple-darwin | |
env: | |
MACOSX_DEPLOYMENT_TARGET: 10.7 | |
- os: windows-latest | |
name: Windows Binary 64-Bit | |
target: x86_64-pc-windows-msvc | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Add rustup target | |
run: rustup target add ${{ matrix.target }} | |
- name: Install apt packages | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: | | |
sudo apt-get install musl-tools libssl-dev | |
sudo ln -s /usr/bin/g++ /usr/bin/musl-g++ | |
# needed to fix file corruption of cache | |
# https://github.com/actions/cache/issues/403 | |
- name: Install GNU tar | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: | | |
brew install gnu-tar | |
echo "/usr/local/opt/gnu-tar/libexec/gnubin" >> $GITHUB_PATH | |
- name: Install wasm-pack | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: Enable Safari web driver | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: sudo safaridriver --enable | |
- name: Store or retrieve cargo caches | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Build in debug mode | |
run: cargo build --target ${{ matrix.target }} --locked | |
- name: Run unit tests | |
run: cargo test --target ${{ matrix.target }} | |
- name: Run WASM integration tests on NodeJS | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: wasm-pack test --node | |
- name: Run WASM integration tests in Chrome | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: wasm-pack test --headless --chrome | |
- name: Run WASM integration tests in Firefox | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: wasm-pack test --headless --firefox | |
- name: Run WASM integration tests in Safari | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: wasm-pack test --headless --safari | |
- name: Create code coverage report | |
if: ${{ matrix.os == 'ubuntu-latest' && github.event_name == 'push' }} | |
# NOTE: actions-rs is unmaintained, using fork with fix for update to node 16 | |
# https://github.com/actions-rs/tarpaulin/pull/22 | |
uses: FreeMasen/tarpaulin-action@9f7e03f06fea8f374c85a95c2ecff6a4d5805845 | |
with: | |
version: "0.22.0" | |
args: '--lib --ignore-config --ignore-panics --ignore-tests --exclude-files src/script.rs src/wasm.rs src/bin/accuracy_reports.rs' | |
- name: Upload code coverage report to Codecov | |
if: ${{ matrix.os == 'ubuntu-latest' && github.event_name == 'push' }} | |
uses: codecov/codecov-action@v3 |