Skip to content

Commit

Permalink
initial version of action workflow for github
Browse files Browse the repository at this point in the history
  • Loading branch information
imrichardcole committed Sep 11, 2024
1 parent aca6dd7 commit f5246ce
Show file tree
Hide file tree
Showing 186 changed files with 63 additions and 6,133 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Run unit tests

on: [push]

jobs:
build:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2

- name: Use specified Node.js version
uses: actions/setup-node@v2
with:
node-version-file: .nvmrc

- name: Install dependencies
run: yarn install

- name: Compile
run: yarn compile

- name: Run linter
run: yarn lint

- name: Run unit tests
run: yarn test
7 changes: 6 additions & 1 deletion benchmark/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ cmake_minimum_required(VERSION 3.20)

project(benchmark)

set(benchmark_DIR "C:/sandbox/work/oss/benchmark/benchmark/install/v143_Release/lib/cmake/benchmark")
if(WIN32)
set(benchmark_DIR "C:/sandbox/work/oss/benchmark/benchmark/install/v143_Release/lib/cmake/benchmark")
else()
set(benchmark_DIR "benchmark_src/install/lib/cmake/benchmark")
endif()

find_package(benchmark
CONFIG
REQUIRED
Expand Down
196 changes: 0 additions & 196 deletions benchmark/build/ALL_BUILD.vcxproj

This file was deleted.

8 changes: 0 additions & 8 deletions benchmark/build/ALL_BUILD.vcxproj.filters

This file was deleted.

336 changes: 0 additions & 336 deletions benchmark/build/CMakeCache.txt

This file was deleted.

Loading

0 comments on commit f5246ce

Please sign in to comment.