Skip to content

Commit

Permalink
update CI
Browse files Browse the repository at this point in the history
CI pipelines were broken because Ubuntu 18.04 is not supported anymore.
  • Loading branch information
kenohassler authored Sep 13, 2023
1 parent da5c7d2 commit 4368e9e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-x86.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build-linux-i386:
# Build / test on a 32 bit container
container: i386/ubuntu:18.04
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v1
Expand Down
10 changes: 3 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ on:

jobs:
build-linux:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- name: Install build dependencies
run: sudo apt install -y libmhash-dev libmcrypt-dev libjpeg62-dev zlib1g-dev build-essential cmake
run: sudo apt install -y libmhash-dev libmcrypt-dev libjpeg-dev zlib1g-dev build-essential cmake
- name: Compile project
run: |
mkdir -p build
Expand All @@ -24,12 +24,8 @@ jobs:
- name: Run (legacy) system tests
run: cd tests/steghide && ./systemtests.pl

# Get a recent python3 version to run the test script
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Run cracker tests
run: cd tests/stegseek && python test.py
run: cd tests/stegseek && python3.8 test.py

- name: Create a .deb package
run: bash package/package.sh
Expand Down

0 comments on commit 4368e9e

Please sign in to comment.