Skip to content

Commit

Permalink
GitHub-CI/build_Ubuntu-latest: add xbuild-based compile pass
Browse files Browse the repository at this point in the history
  • Loading branch information
meebey committed May 6, 2023
1 parent 47f5572 commit bacf50e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/auto-ci-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,18 @@ jobs:
- name: autogen and configure
run: |
./autogen.sh
- name: build
- name: compile with make
run: |
make
- name: clean with make
run: |
make clean
- name: compile with xbuild
run: |
xbuild src/smuxi.sln
- name: clean with xbuild
run: |
xbuild /t:Clean src/smuxi.sln
build_Mono-5_18: # lowest supported Mono version as defined in configure.ac
runs-on: ubuntu-latest
Expand Down

0 comments on commit bacf50e

Please sign in to comment.