Skip to content

Commit

Permalink
adding moc files to CI (#1559)
Browse files Browse the repository at this point in the history
* adding moc to CI

* Update main.yml

* Update main.yml

* Update main.yml

* Update main.yml

* Update main.yml

* Update main.yml

* Update main.yml

* Update main.yml

* Update main.yml
  • Loading branch information
cagnulein authored Nov 2, 2023
1 parent 0ea2269 commit 9fe09e7
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,8 @@ jobs:
ios-build:
# The type of runner that the job will run on
runs-on: macos-latest
permissions:
contents: write

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand Down Expand Up @@ -720,6 +722,13 @@ jobs:
- name: Build
run: qmake CONFIG+=debug && make -j4

- name: Commit moc files
uses: EndBug/add-and-commit@v9
with:
message: 'moc files added'
add: 'src/moc_*.cpp --force'
push: origin HEAD:${{ github.head_ref }}
if: github.ref == 'refs/heads/master'

window-msvc2019-build:
runs-on: windows-latest
Expand Down Expand Up @@ -919,4 +928,4 @@ jobs:
windows-msvc2019-binary/*
windows-binary-no-python/*
windows-binary/*
fdroid-android-trial/*
fdroid-android-trial/*

0 comments on commit 9fe09e7

Please sign in to comment.