|
39 | 39 |
|
40 | 40 | - name: Install qwt-qt5 |
41 | 41 | run: | |
42 | | - wget https://raw.githubusercontent.com/Homebrew/homebrew-core/56cd02e96876d1fb5b9ae951d605585fe8d614de/Formula/qwt.rb |
43 | | - brew install --ignore-dependencies ./qwt.rb |
| 42 | + curl -L https://raw.githubusercontent.com/Homebrew/homebrew-core/56cd02e96876d1fb5b9ae951d605585fe8d614de/Formula/qwt.rb -o /opt/homebrew/Library/Taps/homebrew/homebrew-core/Formula/q/qwt.rb |
| 43 | + git -C /opt/homebrew/Library/Taps/homebrew/homebrew-core add Formula/q/qwt.rb |
| 44 | + git -C /opt/homebrew/Library/Taps/homebrew/homebrew-core commit -m "Formula/q/qwt.rb 6.2.0 for Qt5" |
| 45 | + HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_FROM_API=1 brew install qwt |
44 | 46 |
|
45 | 47 | - name: Set Qt5 environment path |
46 | 48 | run: | |
@@ -493,34 +495,35 @@ jobs: |
493 | 495 | shell: pwsh |
494 | 496 | run: | |
495 | 497 | Set-Location .. |
496 | | - $json = $(curl -L -H "Accept: application/vnd.github+json" https://api.github.com/repos/BtbN/FFmpeg-Builds/releases/latest) |
| 498 | + $json = $(curl -L -H "Accept: application/vnd.github+json" https://api.github.com/repos/BtbN/FFmpeg-Builds/releases/243719342) |
497 | 499 | $ffmpeg_name = $($json | jq -r '.assets[] | select(.name | endswith("-win64-gpl-shared-6.1.zip")).name | sub("\\.zip$";"")') |
498 | 500 | $ffmpeg_url = $($json | jq -r '.assets[] | select(.name | endswith("-win64-gpl-shared-6.1.zip")).browser_download_url') |
499 | 501 | Invoke-WebRequest -Uri "$ffmpeg_url" -OutFile "$ffmpeg_name.zip" |
500 | 502 | Expand-Archive -Path "$ffmpeg_name.zip" -DestinationPath . |
501 | 503 | Rename-Item -Path "$ffmpeg_name" -NewName "ffmpeg" |
502 | 504 |
|
503 | 505 | - name: Download and configure qwt |
| 506 | + shell: bash |
504 | 507 | run: | |
505 | 508 | git clone --branch qwt-6.3 --depth 1 https://git.code.sf.net/p/qwt/git ../qwt |
506 | | - copy .github\workflows\qwtconfig.pri ..\qwt |
| 509 | + cp .github/workflows/qwtconfig.pri ../qwt |
507 | 510 | cd ../qwt |
508 | 511 | qmake -r |
509 | 512 |
|
510 | 513 | - name: Build qwt |
511 | | - shell: cmd |
| 514 | + shell: bash |
512 | 515 | run: | |
513 | 516 | cd ../qwt |
514 | 517 | mingw32-make -j4 |
515 | 518 |
|
516 | 519 | - name: Configure QCTools |
517 | | - shell: cmd |
| 520 | + shell: bash |
518 | 521 | run: | |
519 | 522 | cd Project/QtCreator |
520 | 523 | qmake |
521 | 524 |
|
522 | 525 | - name: Build QCTools |
523 | | - shell: cmd |
| 526 | + shell: bash |
524 | 527 | run: | |
525 | 528 | cd Project/QtCreator |
526 | 529 | mingw32-make |
@@ -575,34 +578,35 @@ jobs: |
575 | 578 | shell: pwsh |
576 | 579 | run: | |
577 | 580 | Set-Location .. |
578 | | - $json = $(curl -L -H "Accept: application/vnd.github+json" https://api.github.com/repos/BtbN/FFmpeg-Builds/releases/latest) |
| 581 | + $json = $(curl -L -H "Accept: application/vnd.github+json" https://api.github.com/repos/BtbN/FFmpeg-Builds/releases/243719342) |
579 | 582 | $ffmpeg_name = $($json | jq -r '.assets[] | select(.name | endswith("-win64-gpl-shared-6.1.zip")).name | sub("\\.zip$";"")') |
580 | 583 | $ffmpeg_url = $($json | jq -r '.assets[] | select(.name | endswith("-win64-gpl-shared-6.1.zip")).browser_download_url') |
581 | 584 | Invoke-WebRequest -Uri "$ffmpeg_url" -OutFile "$ffmpeg_name.zip" |
582 | 585 | Expand-Archive -Path "$ffmpeg_name.zip" -DestinationPath . |
583 | 586 | Rename-Item -Path "$ffmpeg_name" -NewName "ffmpeg" |
584 | 587 |
|
585 | 588 | - name: Download and configure qwt |
| 589 | + shell: bash |
586 | 590 | run: | |
587 | 591 | git clone --branch qwt-6.3 --depth 1 https://git.code.sf.net/p/qwt/git ../qwt |
588 | | - copy .github\workflows\qwtconfig.pri ..\qwt |
| 592 | + cp .github/workflows/qwtconfig.pri ../qwt |
589 | 593 | cd ../qwt |
590 | 594 | qmake -r |
591 | 595 |
|
592 | 596 | - name: Build qwt |
593 | | - shell: cmd |
| 597 | + shell: bash |
594 | 598 | run: | |
595 | 599 | cd ../qwt |
596 | 600 | mingw32-make -j4 |
597 | 601 |
|
598 | 602 | - name: Configure QCTools |
599 | | - shell: cmd |
| 603 | + shell: bash |
600 | 604 | run: | |
601 | 605 | cd Project/QtCreator |
602 | 606 | qmake |
603 | 607 |
|
604 | 608 | - name: Build QCTools |
605 | | - shell: cmd |
| 609 | + shell: bash |
606 | 610 | run: | |
607 | 611 | cd Project/QtCreator |
608 | 612 | mingw32-make |
@@ -658,7 +662,7 @@ jobs: |
658 | 662 | shell: pwsh |
659 | 663 | run: | |
660 | 664 | Set-Location .. |
661 | | - $json = $(curl -L -H "Accept: application/vnd.github+json" https://api.github.com/repos/BtbN/FFmpeg-Builds/releases/latest) |
| 665 | + $json = $(curl -L -H "Accept: application/vnd.github+json" https://api.github.com/repos/BtbN/FFmpeg-Builds/releases/243719342) |
662 | 666 | $ffmpeg_name = $($json | jq -r '.assets[] | select(.name | endswith("-win64-gpl-shared-6.1.zip")).name | sub("\\.zip$";"")') |
663 | 667 | $ffmpeg_url = $($json | jq -r '.assets[] | select(.name | endswith("-win64-gpl-shared-6.1.zip")).browser_download_url') |
664 | 668 | Invoke-WebRequest -Uri "$ffmpeg_url" -OutFile "$ffmpeg_name.zip" |
@@ -745,7 +749,7 @@ jobs: |
745 | 749 | shell: pwsh |
746 | 750 | run: | |
747 | 751 | Set-Location .. |
748 | | - $json = $(curl -L -H "Accept: application/vnd.github+json" https://api.github.com/repos/BtbN/FFmpeg-Builds/releases/latest) |
| 752 | + $json = $(curl -L -H "Accept: application/vnd.github+json" https://api.github.com/repos/BtbN/FFmpeg-Builds/releases/243719342) |
749 | 753 | $ffmpeg_name = $($json | jq -r '.assets[] | select(.name | endswith("-win64-gpl-shared-6.1.zip")).name | sub("\\.zip$";"")') |
750 | 754 | $ffmpeg_url = $($json | jq -r '.assets[] | select(.name | endswith("-win64-gpl-shared-6.1.zip")).browser_download_url') |
751 | 755 | Invoke-WebRequest -Uri "$ffmpeg_url" -OutFile "$ffmpeg_name.zip" |
|
0 commit comments