Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
Nextcloud Notify Push
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eduardo Trujillo
Nextcloud Notify Push
Commits
0eec3767
Commit
0eec3767
authored
4 years ago
by
Robin Appelman
Browse files
Options
Downloads
Patches
Plain Diff
build test client
parent
649fac13
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/rust.yml
+23
-6
23 additions, 6 deletions
.github/workflows/rust.yml
with
23 additions
and
6 deletions
.github/workflows/rust.yml
+
23
−
6
View file @
0eec3767
...
...
@@ -5,7 +5,7 @@ name: CI
jobs
:
check
:
name
:
Check
runs-on
:
ubuntu-
latest
runs-on
:
ubuntu-
18.04
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
actions-rs/toolchain@v1
...
...
@@ -18,9 +18,9 @@ jobs:
with
:
command
:
check
build
:
name
:
Build
Binaries
runs-on
:
ubuntu-
latest
build
-server
:
name
:
Build
server
runs-on
:
ubuntu-
18.04
steps
:
-
name
:
musl-tools
...
...
@@ -35,8 +35,25 @@ jobs:
-
uses
:
actions-rs/cargo@v1
with
:
command
:
build
args
:
--release --target x86_64-unknown-linux-musl
args
:
--release
--exclude test_client
--target x86_64-unknown-linux-musl
-
uses
:
actions/upload-artifact@v2
with
:
name
:
notify_push
path
:
target/x86_64-unknown-linux-musl/release/notify_push
\ No newline at end of file
path
:
target/x86_64-unknown-linux-musl/release/notify_push
build-client
:
name
:
Build client
runs-on
:
ubuntu-18.04
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
actions-rs/toolchain@v1
-
uses
:
Swatinem/rust-cache@v1
-
uses
:
actions-rs/cargo@v1
with
:
command
:
build
args
:
--release --workspace --exclude notify_push
-
uses
:
actions/upload-artifact@v2
with
:
name
:
notify_push
path
:
target/release/notify_push
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment