Skip to content

Commit

Permalink
Added/updated workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
ghorwin committed Dec 17, 2024
1 parent 991c8c6 commit 1ca6189
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: sudo apt install qtbase5-dev qt5-qmake libqt5svg5-dev
- name: build
working-directory: build/cmake
run: ./build.sh 2 release skip-test
run: ./build_only_solver.sh 2 release skip-test
- name: test
working-directory: build/cmake
run: ./run_tests.sh
27 changes: 27 additions & 0 deletions .github/workflows/ubuntu_22.04_Build_Solver.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Ubuntu 20.04 build and tests

on:
# run nightly at 2:00 am
# schedule:
# - cron: "0 2 * * *"
# allow to be triggered on github webpage manually
workflow_dispatch:
# run whenever someone pushes data
# as we do not have much development, this will not cause much traffic/build times
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

# Test suite results are created on Ubuntu 20.04, hence we need to use this for testing
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: install qt5
run: sudo apt install qtbase5-dev qt5-qmake libqt5svg5-dev
- name: build
working-directory: build/cmake
run: ./build_only_solver.sh 2 release skip-test

0 comments on commit 1ca6189

Please sign in to comment.