-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #281 from andrey-terekhov/llvm-testing
LLVM testing fix
- Loading branch information
Showing
14 changed files
with
174 additions
and
134 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
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,48 @@ | ||
name: Test on LLVM | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
windows: | ||
name: Windows Server 2019 | ||
runs-on: windows-2019 | ||
steps: | ||
- name: GitHub repository checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Run script | ||
shell: bash | ||
run: | | ||
patch ./scripts/test.sh < ./scripts/llvm.patch | ||
./scripts/test.sh | ||
ubuntu: | ||
name: Ubuntu 20.04 | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: GitHub repository checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Run script | ||
run: | | ||
patch ./scripts/test.sh < ./scripts/llvm.patch | ||
./scripts/test.sh | ||
macos: | ||
name: macOS Big Sur 11 | ||
runs-on: macos-11 | ||
steps: | ||
- name: GitHub repository checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up environment | ||
run: brew install coreutils | ||
- name: Run script | ||
run: | | ||
patch ./scripts/test.sh < ./scripts/llvm.patch | ||
./scripts/test.sh |
This file was deleted.
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,42 @@ | ||
name: Test on Virtual machine | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
windows: | ||
name: Windows Server 2019 | ||
runs-on: windows-2019 | ||
steps: | ||
- name: GitHub repository checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Run script | ||
shell: bash | ||
run: ./scripts/test.sh | ||
|
||
ubuntu: | ||
name: Ubuntu 20.04 | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: GitHub repository checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Run script | ||
run: ./scripts/test.sh | ||
|
||
macos: | ||
name: macOS Big Sur 11 | ||
runs-on: macos-11 | ||
steps: | ||
- name: GitHub repository checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up environment | ||
run: brew install coreutils | ||
- name: Run script | ||
run: ./scripts/test.sh |
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
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
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
Oops, something went wrong.