Skip to content

Commit

Permalink
Adding github action
Browse files Browse the repository at this point in the history
  • Loading branch information
gdesmar committed Jul 25, 2024
1 parent b7c3301 commit f63f349
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: innoextract CI

on: [push]

jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
apt install -y build-essential cmake libboost-all-dev liblzma-dev
- name: Build innoextract
run: |
mkdir -p build
cd build
cmake ..
make
- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: innoextract
path: build/innoextract

0 comments on commit f63f349

Please sign in to comment.