Skip to content

Commit

Permalink
fix configs
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Dec 22, 2023
1 parent 2ccf513 commit d52cb76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ runs:
steps:
- name: Build Slice compilers
env:
CONFIGS: ${{ join(matrix.configs, ', ') }}
CONFIGS: ${{ matrix.configs }}
run: |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
make -C cpp -j3 V=1 slice2cpp slice2js slice2py slice2rb slice2php slice2java slice2cs slice2swift slice2objc
Expand All @@ -21,7 +21,7 @@ runs:

- name: Build C++
env:
CONFIGS: ${{ join(matrix.configs, ', ') }}
CONFIGS: ${{ matrix.configs }}
run: |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
make -C cpp -j3 V=1
Expand All @@ -30,7 +30,7 @@ runs:

- name: Build join(matrix.languages, ', ')
env:
CONFIGS: ${{ join(matrix.configs, ', ') }}
CONFIGS: ${{ matrix.configs }}
run: |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
make -j3 V=1 LANGUAGES="${{ join(matrix.languages, ' ') }}"
Expand Down

0 comments on commit d52cb76

Please sign in to comment.