Fix XCode issue when html or random files are in src folders (#489) #671
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-linux | |
on: | |
push: | |
paths-ignore: | |
- '**/README.md' | |
pull_request: | |
paths-ignore: | |
- '**/README.md' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
cfg: | |
- {target: linux} | |
env: | |
TARGET: ${{matrix.cfg.target}} | |
steps: | |
- name: Install libunwind | |
run: sudo apt-get install libunwind-dev | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: | |
./scripts/linux/buildPG.sh; | |
env: | |
GA_CI_SECRET: ${{ secrets.CI_SECRET }} |