nathan-vm is building for Linux. #26
Workflow file for this run
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: Test build — Linux | |
run-name: ${{ github.actor }} is building for Linux. | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
test-on-linux: | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: install necessary libs | |
run: | | |
apt-get install build-essential clang libdbus-1-dev libgtk-3-dev \ | |
libnotify-dev libasound2-dev libcap-dev \ | |
libcups2-dev libxtst-dev \ | |
libxss1 libnss3-dev gcc-multilib g++-multilib curl \ | |
gperf bison python3-dbusmock openjdk-8-jre | |
- name: install python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
run: npm run build:linux -- --publish=never |