-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 46ba9e9
Showing
14 changed files
with
1,610 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: Build Qt | ||
|
||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
|
||
jobs: | ||
build-win: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v1 | ||
|
||
- name: Setup MSYS2 | ||
uses: numworks/setup-msys2@v1 | ||
with: | ||
msystem: MINGW64 | ||
|
||
- name: Build | ||
run: msys2do ./build-win.sh | ||
|
||
- name: Generate release notes | ||
shell: bash | ||
run: ./generate-release-notes.sh > RELEASE.md | ||
|
||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} | ||
with: | ||
files: ${{ runner.temp }}/msys/msys64/home/a/*.pkg.tar.xz | ||
|
||
|
||
build-osx: | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v1 | ||
|
||
- name: Build | ||
run: ./build-osx.sh all | ||
|
||
- name: Generate release notes | ||
run: ./generate-release-notes.sh > RELEASE.md | ||
|
||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} | ||
with: | ||
files: archive/*.tar.xz | ||
|
||
|
||
build-linux: | ||
runs-on: ubuntu-18.04 | ||
container: ubuntu:18.04 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v1 | ||
|
||
- name: Build | ||
run: ./build-linux.sh all | ||
|
||
- name: Generate release notes | ||
run: ./generate-release-notes.sh > RELEASE.md | ||
|
||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} | ||
with: | ||
files: archive/*.tar.xz | ||
body_path: RELEASE.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/*/ | ||
!/.github/ |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Qt5 Build | ||
|
||
Scripts and patches for building Qt5 and some tools. | ||
|
||
Not intended for a public use. |
Oops, something went wrong.