Skip to content

Commit e9fc6f7

Browse files
authored
update ci config (#27)
1 parent 0ada784 commit e9fc6f7

File tree

6 files changed

+12
-4
lines changed

6 files changed

+12
-4
lines changed

.github/workflows/build_macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build_macos:
13-
runs-on: macos-13
13+
runs-on: macos-15
1414
defaults:
1515
run:
1616
shell: bash
@@ -19,9 +19,9 @@ jobs:
1919
uses: actions/checkout@v3
2020

2121
- name: Install Qt
22-
uses: jurplel/install-qt-action@v3
22+
uses: jurplel/install-qt-action@v4
2323
with:
24-
setup-python: 'false'
24+
version: '5.15.*'
2525

2626
- name: Build dmg
2727
working-directory: ${{ runner.temp }}

.github/workflows/build_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v3
2020

2121
- name: Install Qt
22-
uses: jurplel/install-qt-action@v3
22+
uses: jurplel/install-qt-action@v4
2323

2424
- name: Set up Visual Studio shell
2525
uses: egor-tensin/vs-shell@v2

scripts/build_deb.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#! /bin/bash
22

3+
set -e
4+
35
if [[ ! -z "$(ls -A $(pwd))" ]]; then
46
echo "Please run from an empty directory!"
57
exit 1

scripts/build_deb_install_deps.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#! /bin/bash
22

3+
set -e
4+
35
apt-get update
46
apt-get install -y cmake file lsb-release bzr bzr-builddeb dh-make
57

scripts/build_dmg.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#! /bin/bash
22

3+
set -e
4+
35
TARGET_DIR="$(pwd)"
46
REPO_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && cd .. >/dev/null 2>&1 && pwd )"
57
BUILD_DIR="$(mktemp -d)"

scripts/build_source_tarball.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#! /bin/bash
22

3+
set -e
4+
35
TARGET_DIR="$(pwd)"
46
REPO_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && cd .. >/dev/null 2>&1 && pwd )"
57
BUILD_DIR="$(mktemp -d)"

0 commit comments

Comments
 (0)