Skip to content

Commit

Permalink
Integration are on merge only
Browse files Browse the repository at this point in the history
  • Loading branch information
jfalcou authored Jun 6, 2024
1 parent c869738 commit 1c86777
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
steps:
- name: Fetch current branch
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: Prepare TTS for documentation
run: |
mkdir build && cd build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
##======================================================================================================================
name: TTS Integration Tests
on:
pull_request:
push:
branches:
- main

Expand All @@ -24,7 +24,7 @@ jobs:

steps:
- name: Fetch current branch
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: Install TTS from checkout
run: |
mkdir build && cd build
Expand All @@ -47,7 +47,7 @@ jobs:

steps:
- name: Fetch current branch
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: Run Sample CMake
run: |
git config --global --add safe.directory /__w/tts/tts
Expand All @@ -66,7 +66,7 @@ jobs:

steps:
- name: Fetch current branch
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: Run Sample CMake
run: |
git config --global --add safe.directory /__w/tts/tts
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- { tool: "-T ClangCL", config: Release }
steps:
- name: Fetch current branch
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: Running CMake for MSVC
run: |
mkdir build && cd build
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- { compiler: clang++ , opts: "-O0 -stdlib=libc++" , linker: -stdlib=libc++ }
steps:
- name: Fetch current branch
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: Running CMake for ${{ matrix.cfg.compiler }} with ${{ matrix.cfg.opts }}
run: |
mkdir build && cd build
Expand All @@ -80,7 +80,7 @@ jobs:
- { compiler: clang++ , opts: "-O0 -stdlib=libc++" , linker: -stdlib=libc++ }
steps:
- name: Fetch current branch
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: Running CMake for ${{ matrix.cfg.compiler }} with ${{ matrix.cfg.opts }}
run: |
mkdir build && cd build
Expand All @@ -98,7 +98,7 @@ jobs:
- { opts: "-O3 -flto -DNDEBUG"}
steps:
- name: Fetch current branch
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: Running CMake for ${{ matrix.cfg.compiler }} with ${{ matrix.cfg.opts }}
run: |
mkdir build && cd build
Expand All @@ -118,7 +118,7 @@ jobs:
- { opts: "-sNO_DISABLE_EXCEPTION_CATCHING -O3 -flto -DNDEBUG" }
steps:
- name: Fetch current branch
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: Running CMake for em++ with ${{ matrix.cfg.opts }}
run: |
mkdir build
Expand All @@ -141,7 +141,7 @@ jobs:
- { opts: "-O3 -flto -DNDEBUG" }
steps:
- name: Fetch current branch
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
- name: Running CMake for icpx with ${{ matrix.cfg.opts }}
run: |
source /opt/intel/oneapi/setvars.sh
Expand Down

0 comments on commit 1c86777

Please sign in to comment.