Skip to content

Commit

Permalink
Added 22.04 pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrueger committed Feb 22, 2025
1 parent 6b19909 commit 1f38024
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,38 @@ jobs:
with:
name: ${{ env.APP_IMG }}
path: ${{ env.APP_IMG }}

build_linux_lts:
strategy:
matrix:
app: [icy_term, icy_draw, icy_view]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install required libraries
run: |
sudo apt-get install build-essential libasound2-dev libxcb-shape0-dev libxcb-xfixes0-dev
git submodule update --init
- name: Build deb
id: build-deb
run: |
cargo install cargo-deb
export version=$(python3 tools/prep_diz.py "${{ matrix.app }}" "file_id.diz")
echo "VERSION=$version" >> $GITHUB_ENV
echo "Version: $version"
cd crates/${{ matrix.app }}
export DEB=$(cargo deb)
echo "Copy $DEB to ${{ matrix.app }}.deb"
mv $DEB "../../${{ matrix.app }}.deb"
cd ../..
- name: 'Upload deb'
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.app }}_linux_22_04_${{ env.VERSION }}
path: |
${{ matrix.app }}.deb
file_id.diz
build_windows:
strategy:
matrix:
Expand Down

0 comments on commit 1f38024

Please sign in to comment.