macOS: install libx11 on CI
This commit is contained in:
parent
b09702acbf
commit
cfe136796c
|
|
@ -29,6 +29,11 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
# Install system dependencies
|
||||||
|
- name: Install system dependencies
|
||||||
|
run: |
|
||||||
|
brew install libx11
|
||||||
|
|
||||||
# Force xmake to a specific folder (for cache)
|
# Force xmake to a specific folder (for cache)
|
||||||
- name: Set xmake env
|
- name: Set xmake env
|
||||||
run: echo "XMAKE_GLOBALDIR=${{ runner.workspace }}/xmake-global" >> $GITHUB_ENV
|
run: echo "XMAKE_GLOBALDIR=${{ runner.workspace }}/xmake-global" >> $GITHUB_ENV
|
||||||
|
|
@ -61,7 +66,7 @@ jobs:
|
||||||
|
|
||||||
# Build the engine
|
# Build the engine
|
||||||
- name: Build Nazara
|
- name: Build Nazara
|
||||||
run: xmake build -v NazaraPlatform
|
run: xmake build -v NazaraRenderer
|
||||||
|
|
||||||
# Run unit tests
|
# Run unit tests
|
||||||
#- name: Run unit tests
|
#- name: Run unit tests
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue