Skip to content

Commit ff6fcef

Browse files
committed
Try again
1 parent 661e0a8 commit ff6fcef

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

.github/workflows/cpp_integration_tests_32bit.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: C++ Integration Tests (ubuntu-latest gcc 32-bit)
2-
on: push
2+
on:
3+
pull_request:
4+
push:
5+
branches: main
36
jobs:
47
build-and-test:
58
runs-on: ubuntu-latest

.github/workflows/cpp_integration_tests_clang.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ jobs:
99
uses: turtlebrowser/get-conan@main
1010
with:
1111
version: 1.65.0
12-
- id: patch_conan
13-
run: conan profile new default --detect && conan profile update settings.compiler.version=17 default
1412
- id: run_conan
1513
run: cd ${GITHUB_WORKSPACE}/test && export CXX=/usr/bin/clang++ &&
14+
conan profile update settings.compiler.version=17 default &&
1615
conan install -e CXX=/usr/bin/clang++ --generator cmake_find_package --install-folder ../build_test/conan-dependencies .
1716
- id: cmake
1817
run: cd ${GITHUB_WORKSPACE}/test && export CXX=/usr/bin/clang++ && cmake -DCMAKE_BUILD_TYPE=Debug -B../build_test -S.

.github/workflows/cpp_integration_tests_mac.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: C++ Integration Tests (macos-latest)
2-
on: push
2+
on:
3+
pull_request:
4+
push:
5+
branches: main
36
jobs:
47
build-and-test:
58
runs-on: macos-latest

.github/workflows/cpp_integration_tests_win.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: C++ Integration Tests (windows-latest msbuild)
2-
on: push
2+
on:
3+
pull_request:
4+
push:
5+
branches: main
36
jobs:
47
build-and-test:
58
runs-on: windows-latest

0 commit comments

Comments
 (0)