Skip to content

Commit

Permalink
Change centos archive repository and add node16 support
Browse files Browse the repository at this point in the history
  • Loading branch information
MinyazevR committed Aug 8, 2024
1 parent c779454 commit cc16ed8
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ on:
branches:
- master
pull_request:


concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

defaults:
run:
shell: bash
Expand Down Expand Up @@ -93,6 +100,13 @@ jobs:
runs-on: ubuntu-latest
container: '${{ matrix.container_os }}:${{ matrix.container_os_version }}'
steps:
- name: Change centos archive repository
run: |
sed -i s/mirror.centos.org/vault.centos.org/g /etc/yum.repos.d/*.repo
sed -i s/^#.*baseurl=http/baseurl=http/g /etc/yum.repos.d/*.repo
sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/*.repo
if: matrix.container_os == 'centos'

- name: Install Qt
run: |
yum update -y
Expand Down Expand Up @@ -147,8 +161,8 @@ jobs:
strategy:
fail-fast: false
matrix:
macos-version: ['11']
python-version: ['3.6']
macos-version: ['12']
python-version: ['3.9']
qt-version: ['5.9.*']
configuration: ['release','debug']
include:
Expand Down

0 comments on commit cc16ed8

Please sign in to comment.