File tree 13 files changed +92
-101
lines changed 13 files changed +92
-101
lines changed Original file line number Diff line number Diff line change @@ -3,26 +3,26 @@ name: Build MacOS
3
3
on :
4
4
push :
5
5
branches :
6
- - main # Adjust this to your main branch name
6
+ - main # Adjust this to your main branch name
7
7
8
8
jobs :
9
9
build :
10
- runs-on : macos-latest # Use the latest macOS runner
10
+ runs-on : macos-latest # Use the latest macOS runner
11
11
12
12
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
15
15
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
20
20
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
23
23
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
3
3
on :
4
4
push :
5
5
branches :
6
- - testing # Adjust this to your main branch name
6
+ - testing # Adjust this to your main branch name
7
7
8
8
jobs :
9
9
build :
10
- runs-on : macos-latest # Use the latest macOS runner
10
+ runs-on : macos-latest # Use the latest macOS runner
11
11
12
12
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
15
15
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
20
20
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
23
23
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
3
3
on :
4
4
push :
5
5
branches :
6
- - main # Adjust this to your main branch name
6
+ - main # Adjust this to your main branch name
7
7
8
8
jobs :
9
9
build :
10
- runs-on : ubuntu-latest # Use the latest Windows runner
10
+ runs-on : ubuntu-latest # Use the latest Windows runner
11
11
12
12
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
15
15
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
20
20
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
23
23
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
3
3
on :
4
4
push :
5
5
branches :
6
- - testing # Adjust this to your main branch name
6
+ - testing # Adjust this to your main branch name
7
7
8
8
jobs :
9
9
build :
10
- runs-on : ubuntu-latest # Use the latest Windows runner
10
+ runs-on : ubuntu-latest # Use the latest Windows runner
11
11
12
12
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
15
15
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
20
20
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
23
23
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
3
3
on :
4
4
push :
5
5
branches :
6
- - main # Adjust this to your main branch name
6
+ - main # Adjust this to your main branch name
7
7
8
8
jobs :
9
9
build :
10
- runs-on : windows-latest # Use the latest Windows runner
10
+ runs-on : windows-latest # Use the latest Windows runner
11
11
12
12
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
15
15
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
20
20
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
23
23
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
3
3
on :
4
4
push :
5
5
branches :
6
- - testing # Adjust this to your main branch name
6
+ - testing # Adjust this to your main branch name
7
7
jobs :
8
8
build :
9
- runs-on : windows-latest # Use the latest Windows runner
9
+ runs-on : windows-latest # Use the latest Windows runner
10
10
11
11
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
14
14
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
19
19
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
22
22
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 1
1
/target
2
2
/Cargo.lock
3
- /config.json
3
+ /config.json
4
+ /.vs
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments