Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Dec 22, 2023
1 parent e66323d commit c1edfa2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: ${{ matrix.configs }}
CONFIGS: ${{ join(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: ${{ matrix.configs }}
CONFIGS: ${{ join(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: ${{ matrix.configs }}
CONFIGS: ${{ join(matrix.configs, ', ' }}
run: |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
make -j3 V=1 LANGUAGES="${{ join(matrix.languages, ' ') }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
matrix:
languages: [[cpp], [csharp], [java]]
os: [macos-latest, ubuntu-latest, windows-latest]
configs: "cpp98-shared cpp11-shared"
configs: [cpp98-shared, cpp11-shared]
include:
- os: macos-latest
languages: [swift, objective-c]
- os: macos-latest
languages: [cpp, swift, objective-c]
configs: "xcodesdk cpp11-xcodesdk arc-xcodesdk"
configs: [xcodesdk, cpp11-xcodesdk, arc-xcodesdk]
- os: macos-latest
languages: [php, ruby, python, js]
cpp: true
Expand Down

0 comments on commit c1edfa2

Please sign in to comment.