-
Notifications
You must be signed in to change notification settings - Fork 47
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
Github Actions 1: Cross Platform Build #2398
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
1a1dc1c
Create build.yml
nbollis 9f03bec
Update build.yml
nbollis ef32654
Update build.yml
nbollis b3f96e4
Update build.yml
nbollis 659178e
enabled windows targeting to gui and guifunctions
nbollis 52b37f2
Update build.yml
nbollis 063ba81
windows targeting
nbollis b7ed6e4
Merge branch 'nbollis-patch-1' of https://github.com/smith-chem-wisc/…
nbollis 1c09e60
added new configuration
nbollis 15b643b
Update build.yml
nbollis 1899f0e
Update build.yml
nbollis ad917f6
Update build.yml
nbollis c029bc9
Update build.yml
nbollis 90ca745
Update build.yml
nbollis 1bd81bf
Update build.yml
nbollis f4413d1
Update build.yml
nbollis be9b088
added test.yml from vs
nbollis 48f13a0
reverterd commit
nbollis 1ef65e8
reverterd commit
nbollis e49a316
updated some csproj files
nbollis cc6d167
touched up GUI.csproj
nbollis 7463b4f
Update build.yml
nbollis 71eb360
Merge branch 'master' into nbollis-patch-1
nbollis 807e02b
fixed the test?
nbollis 8b50faa
Changes at alex's suggestion
nbollis d284894
added back in guifunctions for tests
nbollis 8a91582
removed windows targeting from GUI as it is no longer being built on …
nbollis 5ecc7f7
cleaned up alot
nbollis 04e31e7
did the thing
nbollis cb03621
Merge branch 'master' into nbollis-patch-1
trishorts File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,37 @@ | ||
# This workflow will build a .NET project | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | ||
|
||
name: Build | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
name: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
include: | ||
- os: ubuntu-latest | ||
configuration: UbuntuMac | ||
- os: macos-latest | ||
configuration: UbuntuMac | ||
- os: windows-latest | ||
configuration: Release | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 8.0.204 | ||
- name: Restore dependencies | ||
run: dotnet restore ./MetaMorpheus/MetaMorpheus.sln | ||
- name: Build | ||
run: dotnet build --no-restore ./MetaMorpheus/MetaMorpheus.sln --configuration ${{ matrix.configuration }} |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great change!