update vscode in frontend and add projection option #63
This file contains 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@v3 | |
- name: Build | |
run: | |
./scripts/linux/buildPG.sh; | |
env: | |
GA_CI_SECRET: ${{ secrets.CI_SECRET }} |