Compare commits

...

6 Commits

Author SHA1 Message Date
gabjc 227eb70c56
Merge b966b088e5 into 290040d945 2024-02-28 22:56:20 -07:00
gabjc b966b088e5 test 2023-11-27 13:37:18 -05:00
gabjc 779894ee09 created dir and moved build.yml 2023-11-27 13:33:43 -05:00
gabjc b79c2d4688 esep sonarqube test 2023-11-27 13:30:49 -05:00
gabjc a1bc34dcba
Update BUILDING.md to make it a little easier for newer developers
Added hyperlinks to the two required software to make it easier for newer developers. Also finding Visual Studio community can be a little difficult as the Microsoft website does not list the free, community versions.

Fixes #

### Proposed changes
  -Added hyperlinks and changed some documentation to make it easier to navigate and contribute to the repo.
  -
  -

### Does this make breaking changes?
No.

### Does this version of Project64 compile and run without issue?
Yes.
2023-09-28 16:22:02 -04:00
gabjc 337abf408b
Update README.md for easier navigation
Edited README.md to navigate to BUILDING.md in an easier and faster manner.
2023-09-28 16:11:55 -04:00
4 changed files with 33 additions and 2 deletions

1
.github/sonar-project.properties vendored Normal file
View File

@ -0,0 +1 @@
sonar.projectKey=Project64-Esep

27
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Build
on:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions: read-all
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
# If you wish to fail your job when the Quality Gate is red, uncomment the
# following lines. This would typically be used to fail a deployment.
# - uses: sonarsource/sonarqube-quality-gate-action@master
# timeout-minutes: 5
# env:
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

View File

@ -7,9 +7,10 @@ If you just want to run Project64 or its development builds, use the [Readme](ht
## Required software
* Git
* [Git](https://git-scm.com/downloads)
* This is a hard requirement. It is used for the build step and requires the solution be a part of the Project64 git repository on disk.
* Visual Studio 2015, 2017, or 2019 Community Edition
* [Visual Studio 2015, 2017, or 2019 Community Edition](https://learn.microsoft.com/en-us/visualstudio/releases/2019/release-notes)
* Click on the Visual Studio year you want to use from the left dropdown, and follow the download process.
* During installation, select the `Programming Languages/Visual C++` option in the Visual Studio 2015 installer, or
* During installation, select the `Desktop development with C++` workload in Visual Studio 2017 and 2019 or newer

View File

@ -27,6 +27,8 @@ Installer for the latest stable releases are available [here](https://www.pj64-e
Download nightly builds [here](https://www.pj64-emu.com/nightly-builds).
If you want to contribute to this project, please click [here](https://github.com/project64/project64/blob/develop/Docs/BUILDING.md) to get more infromation on how to set up a local build environment.
AppVeyor (Windows x86/x64): [![Build status](https://ci.appveyor.com/api/projects/status/sbtwyhaexslyhgx3?svg=true
)](https://ci.appveyor.com/project/project64/project64/branch/develop)