Skip to content

Commit

Permalink
remove windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikeost authored Oct 20, 2023
1 parent 2709561 commit ba1975e
Showing 1 changed file with 11 additions and 24 deletions.
35 changes: 11 additions & 24 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,44 +7,31 @@ on:
pull_request:
branches:
- dev

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]

os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install Qt
uses: jurplel/[email protected]
with:
version: 6.4.3
modules: qtcharts

- name: Configure Project
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
echo "Configuring MSVC"
name: Configure MSVC
uses: ilammy/msvc-dev-cmd@v1
with:
arch: x64
spectre: true
fi
qmake -makefile src/Gradify.pro
- name: Configure
run: qmake -makefile src/Gradify.pro

- name: Build
run: make || true
continue-on-error: true

run: make

- name: Test
run: make test || true
continue-on-error: true

run: make test

- name: Package
run: make install || true
continue-on-error: true
run: make install

0 comments on commit ba1975e

Please sign in to comment.