Skip to content

Commit

Permalink
remove OmniOS
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-w committed Jan 18, 2024
1 parent 960dfa0 commit 6e799c6
Showing 1 changed file with 1 addition and 34 deletions.
35 changes: 1 addition & 34 deletions .github/workflows/ci-unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,37 +80,4 @@ jobs:
kill $xvfb_pids
fi
ci-omnios-qt5:
name: "OmniOS (x86_64; qt5)"
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.actor, 'transifex')"

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Build and run unit tests in OmniOS
uses: vmactions/omnios-vm@v1
id: omnios-qt5
with:
# Use sh shell
usesh: true
# When using rsync, you can define copyback: false to not copy files back from the VM in to the host.
copyback: false
prepare: |
pkg install cmake qt5 gettext
run: |
set -e -x
export DISPLAY=:0
mkdir builds
cd builds
cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTING=On -DENABLE_SHOWMYSKY=Off -DENABLE_QTWEBENGINE=Off "${{ github.workspace }}"
make -j3
Xvfb :0 -ac -screen 0 1024x768x24+32 >/dev/null 2>&1 &
sleep 3
ctest --output-on-failure
xvfb_pids=`ps aux | grep Xvfb | grep -v grep | awk '{print $2}'`
if [ "$xvfb_pids" != "" ]; then
kill $xvfb_pids
fi
y

0 comments on commit 6e799c6

Please sign in to comment.