tweak github-actions.yml #10
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: CI | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
clean: 'true' | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Set Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Build tools | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install --no-install-recommends autoconf libtool automake pipx ninja-build bison cmake build-essential gperf | |
- name: Compositor Proxy build dependencies | |
run: | | |
sudo apt-get remove libunwind-* | |
sudo apt-get -y install --no-install-recommends libudev-dev libdrm-dev libegl-dev libopengl-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgstreamer-plugins-bad1.0-dev libgraphene-1.0-dev | |
- name: Install | |
run: yarn install # will run `yarn install` command | |
- name: Build | |
run: yarn workspaces foreach --parallel --topological-dev run build | |
- name: Deploy Compositor Shell | |
uses: cloudflare/wrangler-action@v3 | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
command: pages deploy packages/compositor-shell/dist --project-name=greenfield |