-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fetch latest TGF release from GH API for install scripts (#401)
* Update posix install script to call GH api directly * Fetch latest release from GH api in windows install script * Use releases/latest redirect to find the latest version number * Migrate PS script to use the redirect * Test install on windows * Stop iwr from being so noisy * Simplify test job names * Simplify workflow some more * Fix bad tgf version test
- Loading branch information
Showing
3 changed files
with
43 additions
and
21 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 |
---|---|---|
@@ -1,23 +1,24 @@ | ||
name: Test TGF installation | ||
name: Test Install | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
jobs: | ||
build: | ||
name: Install | ||
|
||
jobs: | ||
posix: | ||
strategy: | ||
matrix: | ||
os: [ macos-latest, ubuntu-latest ] | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- uses: actions/checkout@v3 | ||
- run: ./get-latest-tgf.sh | ||
|
||
- name: Install TGF | ||
run: | | ||
./get-latest-tgf.sh | ||
windows: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: ./get-latest-tgf.ps1 |
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
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