Skip to content

Commit 599f696

Browse files
author
SturdyFool10
committed
Fixed actions breaking, added gitignore for ./vs
1 parent d5f48e3 commit 599f696

13 files changed

+92
-101
lines changed

.github/workflows/build_MacOS.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@ name: Build MacOS
33
on:
44
push:
55
branches:
6-
- main # Adjust this to your main branch name
6+
- main # Adjust this to your main branch name
77

88
jobs:
99
build:
10-
runs-on: macos-latest # Use the latest macOS runner
10+
runs-on: macos-latest # Use the latest macOS runner
1111

1212
steps:
13-
- name: Checkout code
14-
uses: actions/checkout@v2 # This step checks out your repository
13+
- name: Checkout code
14+
uses: actions/checkout@v4 # This step checks out your repository
1515

16-
- name: Set up Rust
17-
uses: actions-rs/toolchain@v1
18-
with:
19-
toolchain: stable
16+
- name: Set up Rust
17+
uses: actions-rs/toolchain@v1
18+
with:
19+
toolchain: stable
2020

21-
- name: Build and Compile
22-
run: cargo build --release # Run your build command
21+
- name: Build and Compile
22+
run: cargo build --release # Run your build command
2323

24-
- name: Archive Artifact
25-
uses: actions/upload-artifact@v2
26-
with:
27-
name: MacOs_Artifact
28-
path: target/release/server_host # Replace with the actual path to your compiled binary
24+
- name: Archive Artifact
25+
uses: actions/upload-artifact@v2
26+
with:
27+
name: MacOs_Artifact
28+
path: target/release/server_host # Replace with the actual path to your compiled binary

.github/workflows/build_MacOS_testing.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@ name: Build MacOS Testing
33
on:
44
push:
55
branches:
6-
- testing # Adjust this to your main branch name
6+
- testing # Adjust this to your main branch name
77

88
jobs:
99
build:
10-
runs-on: macos-latest # Use the latest macOS runner
10+
runs-on: macos-latest # Use the latest macOS runner
1111

1212
steps:
13-
- name: Checkout code
14-
uses: actions/checkout@v2 # This step checks out your repository
13+
- name: Checkout code
14+
uses: actions/checkout@v4 # This step checks out your repository
1515

16-
- name: Set up Rust
17-
uses: actions-rs/toolchain@v1
18-
with:
19-
toolchain: stable
16+
- name: Set up Rust
17+
uses: actions-rs/toolchain@v1
18+
with:
19+
toolchain: stable
2020

21-
- name: Build and Compile
22-
run: cargo build --release # Run your build command
21+
- name: Build and Compile
22+
run: cargo build --release # Run your build command
2323

24-
- name: Archive Artifact
25-
uses: actions/upload-artifact@v2
26-
with:
27-
name: MacOs_Artifact
28-
path: target/release/server_host # Replace with the actual path to your compiled binary
24+
- name: Archive Artifact
25+
uses: actions/upload-artifact@v2
26+
with:
27+
name: MacOs_Artifact
28+
path: target/release/server_host # Replace with the actual path to your compiled binary

.github/workflows/build_linux.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@ name: Build Linux
33
on:
44
push:
55
branches:
6-
- main # Adjust this to your main branch name
6+
- main # Adjust this to your main branch name
77

88
jobs:
99
build:
10-
runs-on: ubuntu-latest # Use the latest Windows runner
10+
runs-on: ubuntu-latest # Use the latest Windows runner
1111

1212
steps:
13-
- name: Checkout code
14-
uses: actions/checkout@v2 # This step checks out your repository
13+
- name: Checkout code
14+
uses: actions/checkout@v4 # This step checks out your repository
1515

16-
- name: Set up Rust
17-
uses: actions-rs/toolchain@v1
18-
with:
19-
toolchain: stable
16+
- name: Set up Rust
17+
uses: actions-rs/toolchain@v1
18+
with:
19+
toolchain: stable
2020

21-
- name: Build and Compile
22-
run: cargo build --release # Run your build command
21+
- name: Build and Compile
22+
run: cargo build --release # Run your build command
2323

24-
- name: Archive Artifact
25-
uses: actions/upload-artifact@v2
26-
with:
27-
name: Linux_Artifact
28-
path: target/release/server_host # Replace with the actual path to your compiled binary
24+
- name: Archive Artifact
25+
uses: actions/upload-artifact@v2
26+
with:
27+
name: Linux_Artifact
28+
path: target/release/server_host # Replace with the actual path to your compiled binary

.github/workflows/build_linux_testing.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@ name: Build Linux Testing
33
on:
44
push:
55
branches:
6-
- testing # Adjust this to your main branch name
6+
- testing # Adjust this to your main branch name
77

88
jobs:
99
build:
10-
runs-on: ubuntu-latest # Use the latest Windows runner
10+
runs-on: ubuntu-latest # Use the latest Windows runner
1111

1212
steps:
13-
- name: Checkout code
14-
uses: actions/checkout@v2 # This step checks out your repository
13+
- name: Checkout code
14+
uses: actions/checkout@v4 # This step checks out your repository
1515

16-
- name: Set up Rust
17-
uses: actions-rs/toolchain@v1
18-
with:
19-
toolchain: stable
16+
- name: Set up Rust
17+
uses: actions-rs/toolchain@v1
18+
with:
19+
toolchain: stable
2020

21-
- name: Build and Compile
22-
run: cargo build --release # Run your build command
21+
- name: Build and Compile
22+
run: cargo build --release # Run your build command
2323

24-
- name: Archive Artifact
25-
uses: actions/upload-artifact@v2
26-
with:
27-
name: Linux_Artifact
28-
path: target/release/server_host # Replace with the actual path to your compiled binary
24+
- name: Archive Artifact
25+
uses: actions/upload-artifact@v2
26+
with:
27+
name: Linux_Artifact
28+
path: target/release/server_host # Replace with the actual path to your compiled binary

.github/workflows/build_win.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@ name: Build Win
33
on:
44
push:
55
branches:
6-
- main # Adjust this to your main branch name
6+
- main # Adjust this to your main branch name
77

88
jobs:
99
build:
10-
runs-on: windows-latest # Use the latest Windows runner
10+
runs-on: windows-latest # Use the latest Windows runner
1111

1212
steps:
13-
- name: Checkout code
14-
uses: actions/checkout@v2 # This step checks out your repository
13+
- name: Checkout code
14+
uses: actions/checkout@v4 # This step checks out your repository
1515

16-
- name: Set up Rust
17-
uses: actions-rs/toolchain@v1
18-
with:
19-
toolchain: stable
16+
- name: Set up Rust
17+
uses: actions-rs/toolchain@v1
18+
with:
19+
toolchain: stable
2020

21-
- name: Build and Compile
22-
run: cargo build --release # Run your build command
21+
- name: Build and Compile
22+
run: cargo build --release # Run your build command
2323

24-
- name: Archive Artifact
25-
uses: actions/upload-artifact@v2
26-
with:
27-
name: Win_Artifact
28-
path: target/release/server_host.exe # Replace with the actual path to your compiled binary
24+
- name: Archive Artifact
25+
uses: actions/upload-artifact@v2
26+
with:
27+
name: Win_Artifact
28+
path: target/release/server_host.exe # Replace with the actual path to your compiled binary

.github/workflows/build_win_testing.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@ name: Build Win Testing
33
on:
44
push:
55
branches:
6-
- testing # Adjust this to your main branch name
6+
- testing # Adjust this to your main branch name
77
jobs:
88
build:
9-
runs-on: windows-latest # Use the latest Windows runner
9+
runs-on: windows-latest # Use the latest Windows runner
1010

1111
steps:
12-
- name: Checkout code
13-
uses: actions/checkout@v2 # This step checks out your repository
12+
- name: Checkout code
13+
uses: actions/checkout@v4 # This step checks out your repository
1414

15-
- name: Set up Rust
16-
uses: actions-rs/toolchain@v1
17-
with:
18-
toolchain: stable
15+
- name: Set up Rust
16+
uses: actions-rs/toolchain@v1
17+
with:
18+
toolchain: stable
1919

20-
- name: Build and Compile
21-
run: cargo build --release # Run your build command
20+
- name: Build and Compile
21+
run: cargo build --release # Run your build command
2222

23-
- name: Archive Artifact
24-
uses: actions/upload-artifact@v2
25-
with:
26-
name: Win_Artifact
27-
path: target/release/server_host.exe # Replace with the actual path to your compiled binary
23+
- name: Archive Artifact
24+
uses: actions/upload-artifact@v2
25+
with:
26+
name: Win_Artifact
27+
path: target/release/server_host.exe # Replace with the actual path to your compiled binary

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/target
22
/Cargo.lock
3-
/config.json
3+
/config.json
4+
/.vs

.vs/ProjectSettings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.
Binary file not shown.
Binary file not shown.

.vs/ServerHost/v17/.wsuo

-21 KB
Binary file not shown.

.vs/VSWorkspaceState.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

.vs/slnx.sqlite

-88 KB
Binary file not shown.

0 commit comments

Comments
 (0)