Skip to content

Commit

Permalink
Merge pull request #38 from fwcd/linux-build
Browse files Browse the repository at this point in the history
Add a Linux/AppImage build
  • Loading branch information
spensbot authored Jul 2, 2024
2 parents a2dade5 + e7ea8b0 commit 27611d8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
os: [macos-latest, windows-latest]
os: [macos-latest, windows-latest, ubuntu-latest]

steps:
- name: Checkout git repo
Expand All @@ -23,6 +23,10 @@ jobs:
- name: Pull Git LFS
run: git lfs pull

- name: Install Linux dependencies
if: runner.os == 'Linux'
run: sudo apt-get update -y && sudo apt-get install -y libasound2-dev

- name: Install Node and NPM
uses: actions/setup-node@v1
with:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
os: [macos-latest, windows-latest]
os: [macos-latest, windows-latest, ubuntu-latest]

steps:
- name: Check out Git repository
Expand All @@ -17,6 +17,10 @@ jobs:
- name: Checkout submodules
run: git submodule update --init --recursive

- name: Install Linux dependencies
if: runner.os == 'Linux'
run: sudo apt-get update -y && sudo apt-get install -y libasound2-dev

- name: Install Node.js and NPM
uses: actions/setup-node@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/menu/MenuBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react'
import styled from 'styled-components'
import zIndexes from '../zIndexes'
import UniverseIcon from '@mui/icons-material/Settings'
import LightingIcon from '@mui/icons-material/LightBulb'
import LightingIcon from '@mui/icons-material/Lightbulb'
import WbIncandescentIcon from '@mui/icons-material/WbIncandescent'
import VisualsIcon from '../images/Thick.png'
import MixerIcon from '@mui/icons-material/BarChart'
Expand Down
2 changes: 1 addition & 1 deletion src/visualizer/threejs/effects/AfterImage.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AfterimagePass } from 'three/examples/jsm/postprocessing/AfterImagePass'
import { AfterimagePass } from 'three/examples/jsm/postprocessing/AfterimagePass'
import EffectBase from './EffectBase'
import { AfterImageConfig } from './effectConfigs'
import { mapFn } from '../../../shared/util'
Expand Down
2 changes: 1 addition & 1 deletion src/visualizer/threejs/effects/HalfTone.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { HalftonePass } from 'three/examples/jsm/postprocessing/HalfTonePass'
import { HalftonePass } from 'three/examples/jsm/postprocessing/HalftonePass'
import EffectBase from './EffectBase'
import { HalfToneConfig } from './effectConfigs'

Expand Down

0 comments on commit 27611d8

Please sign in to comment.