Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Duniter v2S
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
rust
Duniter v2S
Merge requests
!239
Resolve "srtool no more builds the WASM"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "srtool no more builds the WASM"
189-srtool-no-more-builds-the-wasm
into
master
Overview
3
Commits
6
Pipelines
41
Changes
1
Merged
Resolve "srtool no more builds the WASM"
Cédric Moreau
requested to merge
189-srtool-no-more-builds-the-wasm
into
master
Feb 4, 2024
Overview
3
Commits
6
Pipelines
41
Changes
1
Closes
#189 (closed)
0
0
Merge request reports
Compare
master
version 19
86da1d9b
Feb 6, 2024
version 18
d3487177
Feb 6, 2024
version 17
5cc05eb9
Feb 6, 2024
version 16
3f649ff2
Feb 6, 2024
version 15
9e0e81d8
Feb 5, 2024
version 14
0cc7c018
Feb 5, 2024
version 13
511aa712
Feb 5, 2024
version 12
5a360b40
Feb 5, 2024
version 11
4bb2f0cb
Feb 5, 2024
version 10
04a7be45
Feb 5, 2024
version 9
7dd85d55
Feb 5, 2024
version 8
391ce733
Feb 5, 2024
version 7
22519705
Feb 5, 2024
version 6
02321415
Feb 4, 2024
version 5
6ed8d272
Feb 4, 2024
version 4
6d08b286
Feb 4, 2024
version 3
d303d7be
Feb 4, 2024
version 2
b1ada1a9
Feb 4, 2024
version 1
0173072b
Feb 4, 2024
master (base)
and
version 4
latest version
fecf9c0a
6 commits,
Feb 6, 2024
version 19
86da1d9b
6 commits,
Feb 6, 2024
version 18
d3487177
6 commits,
Feb 6, 2024
version 17
5cc05eb9
6 commits,
Feb 6, 2024
version 16
3f649ff2
6 commits,
Feb 6, 2024
version 15
9e0e81d8
6 commits,
Feb 5, 2024
version 14
0cc7c018
6 commits,
Feb 5, 2024
version 13
511aa712
6 commits,
Feb 5, 2024
version 12
5a360b40
6 commits,
Feb 5, 2024
version 11
4bb2f0cb
6 commits,
Feb 5, 2024
version 10
04a7be45
6 commits,
Feb 5, 2024
version 9
7dd85d55
6 commits,
Feb 5, 2024
version 8
391ce733
6 commits,
Feb 5, 2024
version 7
22519705
6 commits,
Feb 5, 2024
version 6
02321415
5 commits,
Feb 4, 2024
version 5
6ed8d272
4 commits,
Feb 4, 2024
version 4
6d08b286
3 commits,
Feb 4, 2024
version 3
d303d7be
2 commits,
Feb 4, 2024
version 2
b1ada1a9
2 commits,
Feb 4, 2024
version 1
0173072b
1 commit,
Feb 4, 2024
1 file
+
28
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
28
−
0
View file @ 6d08b286
Edit in single-file editor
Open in Web IDE
Show full file
@@ -4,6 +4,7 @@
@@ -4,6 +4,7 @@
stages
:
stages
:
-
schedule
-
schedule
-
labels
-
labels
-
srtool
-
quality
-
quality
-
build
-
build
-
tests
-
tests
@@ -114,6 +115,33 @@ gdev_build:
@@ -114,6 +115,33 @@ gdev_build:
-
apt-get install -y clang cmake protobuf-compiler
-
apt-get install -y clang cmake protobuf-compiler
-
cargo build --no-default-features --features gtest
-
cargo build --no-default-features --features gtest
gdev_srtool_build
:
stage
:
srtool
rules
:
-
if
:
$CI_COMMIT_REF_NAME =~ /^wip*$/
when
:
manual
-
if
:
$CI_COMMIT_TAG
when
:
never
-
if
:
$CI_COMMIT_BRANCH =~ /^(release\/runtime-)[0-9].*/
when
:
never
-
if
:
'
$CI_MERGE_REQUEST_ID
||
$CI_COMMIT_BRANCH
==
"master"'
-
when
:
manual
image
:
paritytech/srtool:1.74.0-0.13.0
variables
:
PACKAGE
:
gdev-runtime
RUNTIME_DIR
:
runtime/gdev
SRTOOL_OUTPUT
:
$CI_PROJECT_DIR/release/srtool_output_gdev.json
script
:
-
echo "Building runtime for gdev"
-
mkdir -p $CI_PROJECT_DIR/release
# Copy sources to the expected directory of srtool
-
cp -R * /build/
# Build the runtime
-
/srtool/build --app --json -cM | tee -a $SRTOOL_OUTPUT
-
mv /build/runtime/gdev/target/srtool/release/wbuild/gdev-runtime/gdev_runtime.compact.compressed.wasm $CI_PROJECT_DIR/release/
tags
:
-
kepler
tests
:
tests
:
stage
:
tests
stage
:
tests
image
:
rust:1-bullseye
image
:
rust:1-bullseye
Loading