Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dotacat
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Stephen D
dotacat
Merge requests
!3
CI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
CI
ci
into
master
Overview
0
Commits
1
Pipelines
13
Changes
2
Merged
Stephen D
requested to merge
ci
into
master
3 years ago
Overview
0
Commits
1
Pipelines
13
Changes
2
Expand
CI + artifacts for Linux, Windows
Edited
3 years ago
by
Stephen D
0
0
Merge request reports
Compare
master
version 12
f768a7ba
3 years ago
version 11
f3089ec8
3 years ago
version 10
44e9f11d
3 years ago
version 9
3cb20dfa
3 years ago
version 8
e383a310
3 years ago
version 7
ea193aa4
3 years ago
version 6
2c10af1d
3 years ago
version 5
cf13c660
3 years ago
version 4
0603363e
3 years ago
version 3
8950998e
3 years ago
version 2
9ab079db
3 years ago
version 1
4923ebff
3 years ago
master (base)
and
latest version
latest version
7aa4fe63
1 commit,
3 years ago
version 12
f768a7ba
3 commits,
3 years ago
version 11
f3089ec8
2 commits,
3 years ago
version 10
44e9f11d
1 commit,
3 years ago
version 9
3cb20dfa
12 commits,
3 years ago
version 8
e383a310
11 commits,
3 years ago
version 7
ea193aa4
10 commits,
3 years ago
version 6
2c10af1d
9 commits,
3 years ago
version 5
cf13c660
8 commits,
3 years ago
version 4
0603363e
7 commits,
3 years ago
version 3
8950998e
6 commits,
3 years ago
version 2
9ab079db
5 commits,
3 years ago
version 1
4923ebff
3 commits,
3 years ago
2 files
+
29
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
0 → 100644
+
29
−
0
Options
image
:
"
rust:latest"
stages
:
-
test
-
build
before_script
:
-
apt-get update -q && apt-get install mingw-w64 -yqq
-
rustup component add rustfmt
-
rustup component add clippy
-
rustup target add x86_64-pc-windows-gnu
test
:
stage
:
test
script
:
-
cargo fmt -- --check
-
cargo clippy --all-targets --all-features -- -D warnings
-
cargo test
build
:
stage
:
build
script
:
-
cargo build --release
-
cargo build --release --target x86_64-pc-windows-gnu
artifacts
:
paths
:
-
target/release/dotacat
-
target/x86_64-pc-windows-gnu/release/dotacat.exe
Loading