Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark builds as experimental #4553

Merged
merged 1 commit into from
Apr 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 28 additions & 25 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -361,15 +361,16 @@ jobs:
fetch-depth: 0 # allows for tags access

- uses: actions/download-artifact@v3
name: Windows Qt5.15.2
name: macOS x86_64 Qt6.5.0 dmg
with:
name: chatterino-windows-x86-64-Qt-5.15.2.zip
name: chatterino-macos-Qt-6.5.0.dmg
path: release-artifacts/

- uses: actions/download-artifact@v3
name: Windows Qt5.15 symbols
name: Ubuntu 22.04 Qt6.2.4 deb
with:
name: chatterino-windows-x86-64-Qt-5.15.2-symbols.pdb.7z
name: Chatterino-ubuntu-22.04-Qt-6.2.4.deb
Chatterino-ubuntu-22.04-Qt-6.2.4.deb
path: release-artifacts/

- uses: actions/download-artifact@v3
Expand All @@ -384,56 +385,58 @@ jobs:
name: chatterino-windows-x86-64-Qt-6.5.0-symbols.pdb.7z
path: release-artifacts/

- name: Mark experimental
run: |
ls -l
# Mark all Qt6 builds as EXPERIMENTAL
mv chatterino-macos-Qt-6.5.0.dmg EXPERIMENTAL-chatterino-macos-Qt-6.5.0-dmg
mv Chatterino-ubuntu-22.04-x86_64.deb EXPERIMENTAL-Chatterino-ubuntu-22.04-Qt-6.2.4.deb
mv chatterino-windows-x86-64-Qt-6.5.0.zip EXPERIMENTAL-chatterino-windows-x86-64-Qt-6.5.0.zip
mv chatterino-windows-x86-64-Qt-6.5.0-symbols.pdb.7z EXPERIMENTAL-chatterino-windows-x86-64-Qt-6.5.0-symbols.pdb.7z
working-directory: release-artifacts
shell: bash

- uses: actions/download-artifact@v3
name: Linux Qt5.12.12 AppImage
name: Windows Qt5.15.2
with:
name: Chatterino-x86_64-5.12.12.AppImage
name: chatterino-windows-x86-64-Qt-5.15.2.zip
path: release-artifacts/

- uses: actions/download-artifact@v3
name: Ubuntu 20.04 Qt5.12.12 deb
name: Windows Qt5.15 symbols
with:
name: Chatterino-ubuntu-20.04-Qt-5.12.12.deb
name: chatterino-windows-x86-64-Qt-5.15.2-symbols.pdb.7z
path: release-artifacts/

- uses: actions/download-artifact@v3
name: Ubuntu 22.04 Qt5.15.2 deb
name: Linux Qt5.12.12 AppImage
with:
name: Chatterino-ubuntu-22.04-Qt-5.15.2.deb
name: Chatterino-x86_64-5.12.12.AppImage
path: release-artifacts/

- uses: actions/download-artifact@v3
name: Ubuntu 22.04 Qt6.2.4 deb
name: Ubuntu 20.04 Qt5.12.12 deb
with:
name: Chatterino-ubuntu-22.04-Qt-6.2.4.deb
name: Chatterino-ubuntu-20.04-Qt-5.12.12.deb
path: release-artifacts/

- uses: actions/download-artifact@v3
name: macOS x86_64 Qt5.15.2 dmg
name: Ubuntu 22.04 Qt5.15.2 deb
with:
name: chatterino-macos-Qt-5.15.2.dmg
name: Chatterino-ubuntu-22.04-Qt-5.15.2.deb
path: release-artifacts/

- uses: actions/download-artifact@v3
name: macOS x86_64 Qt6.5.0 dmg
name: macOS x86_64 Qt5.15.2 dmg
with:
name: chatterino-macos-Qt-6.5.0.dmg
name: chatterino-macos-Qt-5.15.2.dmg
path: release-artifacts/

- name: Copy flatpakref
run: |
cp .CI/chatterino-nightly.flatpakref release-artifacts/
shell: bash

- name: Mark experimental
run: |
# Mark all Qt6 builds as EXPERIMENTAL
mv chatterino-macos-Qt-6.5.0.dmg EXPERIMENTAL-chatterino-macos-Qt-6.5.0-dmg
mv Chatterino-ubuntu-22.04-Qt-6.2.4.deb EXPERIMENTAL-Chatterino-ubuntu-22.04-Qt-6.2.4.deb
mv chatterino-windows-x86-64-Qt-6.5.0.zip EXPERIMENTAL-chatterino-windows-x86-64-Qt-6.5.0.zip
working-directory: release-artifacts
shell: bash

- name: Create release
uses: ncipollo/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
- Dev: Add scripting capabilities with Lua (#4341, #4504)
- Dev: Conan 2.0 is now used instead of Conan 1.0. (#4417)
- Dev: Added tests and benchmarks for `LinkParser`. (#4436)
- Dev: Experimental builds with Qt 6 are now provided. (#4522, #4551)
- Dev: Experimental builds with Qt 6 are now provided. (#4522, #4551, #4553)
- Dev: Removed `CHATTERINO_TEST` definitions. (#4526)
- Dev: Builds for macOS now have `macos` in their name (previously: `osx`). (#4550)

Expand Down