Compare commits

..

7 Commits

Author SHA1 Message Date
phoenix e7213b9d24 bump: serde_json 2026-05-03 17:33:24 -04:00
phoenix cb9f3746e1 bump: rand 2026-05-03 17:32:15 -04:00
phoenix 4b42a435fe Cargo.toml time bump 2026-05-03 17:29:38 -04:00
phoenix df51ec975b Cargo.toml uuid bump 2026-05-03 17:28:36 -04:00
phoenix c92f8bd2eb tempfile bump 2026-05-03 17:23:43 -04:00
phoenix 2992a6e87f Cargo.toml rust bump 2026-05-03 17:22:25 -04:00
phoenix fb0d6e49ca Workflow rust bump 2026-05-03 17:22:10 -04:00
3 changed files with 30 additions and 5 deletions
+28 -3
View File
@@ -6,7 +6,7 @@ stages:
build:
stage: build
image: rust:1.95
image: rust:1.85
script:
- cargo build --release
- ls -R target/release/
@@ -22,7 +22,7 @@ build:
test:
stage: test
image: rust:1.95
image: rust:1.85
script:
- cargo test
cache:
@@ -33,7 +33,7 @@ test:
test_variable:
stage: test
image: rust:1.95
image: rust:1.85
script:
- echo "Checking CARGO_LOGIN_TOKEN..."
- if [[ -z "$CARGO_LOGIN_TOKEN" ]]; then echo "CARGO_LOGIN_TOKEN is empty!"; exit 1; else echo "CARGO_LOGIN_TOKEN is set."; fi
@@ -56,3 +56,28 @@ extract_version:
artifacts:
reports:
dotenv: version.env
tag_release:
stage: deploy
image: registry.gitlab.com/gitlab-org/release-cli:latest
rules:
- if: '($CI_COMMIT_BRANCH == "dev" || $CI_COMMIT_BRANCH == "main") && $CI_PIPELINE_SOURCE == "push"'
dependencies:
- extract_version
script:
- release-cli create --name "Release $CI_COMMIT_BRANCH-v$VERSION" --tag-name "$CI_COMMIT_BRANCH-v$VERSION"
deploy:
stage: deploy
image: rust:1.85
script:
- echo "Deployment will be configured when this is ready for use"
# - env
# Uncomment when you are ready for this to be published
# - cargo login "$CARGO_LOGIN_TOKEN"
# - cargo publish
dependencies:
- build
rules:
- if: '$CI_COMMIT_TAG'
Generated
+1 -1
View File
@@ -192,7 +192,7 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
[[package]]
name = "icarus_models"
version = "0.11.0"
version = "0.10.0"
dependencies = [
"josekit",
"rand",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "icarus_models"
version = "0.11.0"
version = "0.10.0"
edition = "2024"
rust-version = "1.95"
description = "models used for the icarus project"