Skip to content

Commit

Permalink
[EN-7164] Add candle events
Browse files Browse the repository at this point in the history
  • Loading branch information
AnatolyKalin committed Aug 10, 2023
1 parent 8445c87 commit 8a4eb48
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: 'Release'
XCODE_VERSION: '15.0'
GCC_VERSION: '12'

jobs:
build:
Expand All @@ -27,6 +28,12 @@ jobs:
if: ${{ contains(matrix.os, 'macos') }}
run: sudo xcode-select -s '/Applications/Xcode_${{env.XCODE_VERSION}}.app/Contents/Developer'

- name: Select gcc version
if: ${{ contains(matrix.os, 'ubuntu') }}
run: |
export CC=gcc-${{env.GCC_VERSION}}
export CXX=g++-${{env.GCC_VERSION}}
- name: Prepare build
run: |
ls
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
runs-on: ${{ matrix.os }}
env:
XCODE_VERSION: '15.0'
GCC_VERSION: '12'

steps:
- uses: actions/checkout@v3
Expand All @@ -65,6 +66,12 @@ jobs:
if: ${{ contains(matrix.os, 'macos') }}
run: sudo xcode-select -s '/Applications/Xcode_${{env.XCODE_VERSION}}.app/Contents/Developer'

- name: Select gcc version
if: ${{ contains(matrix.os, 'ubuntu') }}
run: |
export CC=gcc-${{env.GCC_VERSION}}
export CXX=g++-${{env.GCC_VERSION}}
- name: Prepare build
run: |
ls
Expand Down

0 comments on commit 8a4eb48

Please sign in to comment.