File tree Expand file tree Collapse file tree 13 files changed +92
-101
lines changed Expand file tree Collapse file tree 13 files changed +92
-101
lines changed Original file line number Diff line number Diff line change @@ -3,26 +3,26 @@ name: Build MacOS
33on :
44 push :
55 branches :
6- - main # Adjust this to your main branch name
6+ - main # Adjust this to your main branch name
77
88jobs :
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
Original file line number Diff line number Diff line change @@ -3,26 +3,26 @@ name: Build MacOS Testing
33on :
44 push :
55 branches :
6- - testing # Adjust this to your main branch name
6+ - testing # Adjust this to your main branch name
77
88jobs :
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
Original file line number Diff line number Diff line change @@ -3,26 +3,26 @@ name: Build Linux
33on :
44 push :
55 branches :
6- - main # Adjust this to your main branch name
6+ - main # Adjust this to your main branch name
77
88jobs :
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
Original file line number Diff line number Diff line change @@ -3,26 +3,26 @@ name: Build Linux Testing
33on :
44 push :
55 branches :
6- - testing # Adjust this to your main branch name
6+ - testing # Adjust this to your main branch name
77
88jobs :
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
Original file line number Diff line number Diff line change @@ -3,26 +3,26 @@ name: Build Win
33on :
44 push :
55 branches :
6- - main # Adjust this to your main branch name
6+ - main # Adjust this to your main branch name
77
88jobs :
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
Original file line number Diff line number Diff line change @@ -3,25 +3,25 @@ name: Build Win Testing
33on :
44 push :
55 branches :
6- - testing # Adjust this to your main branch name
6+ - testing # Adjust this to your main branch name
77jobs :
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
Original file line number Diff line number Diff line change 11/target
22/Cargo.lock
3- /config.json
3+ /config.json
4+ /.vs
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments