Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nheko
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Nheko Reborn
nheko
Commits
9a1a065c
Verified
Commit
9a1a065c
authored
2 years ago
by
Joe Donofry
Browse files
Options
Downloads
Patches
Plain Diff
Put releasable artifacts into artifacts dir
parent
51c9245c
No related branches found
No related tags found
No related merge requests found
Pipeline
#4507
failed
2 years ago
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.ci/macos/notarize.sh
+1
-1
1 addition, 1 deletion
.ci/macos/notarize.sh
.gitlab-ci.yml
+10
-4
10 additions, 4 deletions
.gitlab-ci.yml
with
11 additions
and
5 deletions
.ci/macos/notarize.sh
+
1
−
1
View file @
9a1a065c
...
...
@@ -98,6 +98,6 @@ VERSION=${CI_COMMIT_SHORT_SHA}
if
[
-n
"
$VERSION
"
]
;
then
mv
nheko.dmg
"nheko-
${
VERSION
}
_
${
PLAT
}
.dmg"
mkdir
artifacts
mkdir
-p
artifacts
cp
"nheko-
${
VERSION
}
_
${
PLAT
}
.dmg"
artifacts/
fi
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
+
10
−
4
View file @
9a1a065c
...
...
@@ -130,7 +130,7 @@ build-macos:
-
if
:
'
$CI_PIPELINE_TRIGGERED
==
null'
artifacts
:
paths
:
-
build/nheko.app
-
build/nheko.app
# not putting this in 'artifacts' subdir because we don't want to put it on releases
name
:
nheko-${CI_COMMIT_SHORT_SHA}-macos-app
expose_as
:
'
macos-app'
public
:
false
...
...
@@ -186,6 +186,7 @@ build-flatpak-amd64:
after_script
:
-
bash ./.ci/upload-nightly-gitlab.sh build-flatpak/nheko-amd64.flatpak
-
(cd ./scripts && ./upload-to-flatpak-repo.sh ../build-flatpak/repo) ||
true
-
(cd $CI_BUILDS_DIR && mkdir -p artifacts && cp build-flatpak/nheko-arm64.flatpak artifacts/) ||
true
rules
:
-
if
:
'
$CI_PIPELINE_TRIGGERED
==
null'
cache
:
...
...
@@ -194,7 +195,7 @@ build-flatpak-amd64:
-
build-flatpak/.flatpak-builder/
artifacts
:
expose_as
:
'
flatpak-amd64'
paths
:
[
'
build-flatpak
/nheko-amd64.flatpak'
]
paths
:
[
'
artifacts
/nheko-amd64.flatpak'
]
name
:
flatpak-${CI_COMMIT_REF_NAME}-${VERSION}-amd64
build-flatpak-arm64
:
...
...
@@ -217,6 +218,7 @@ build-flatpak-arm64:
after_script
:
-
bash ./.ci/upload-nightly-gitlab.sh build-flatpak/nheko-arm64.flatpak
-
(cd ./scripts && ./upload-to-flatpak-repo.sh ../build-flatpak/repo) ||
true
-
(cd $CI_BUILDS_DIR && mkdir -p artifacts && cp build-flatpak/nheko-arm64.flatpak artifacts/) ||
true
rules
:
-
if
:
'
$CI_PIPELINE_TRIGGERED
==
"123456"'
cache
:
...
...
@@ -225,7 +227,7 @@ build-flatpak-arm64:
-
build-flatpak/.flatpak-builder/
artifacts
:
expose_as
:
'
flatpak-arm64'
paths
:
[
'
build-flatpak
/nheko-arm64.flatpak'
]
paths
:
[
'
artifacts
/nheko-arm64.flatpak'
]
name
:
flatpak-${CI_COMMIT_REF_NAME}-${VERSION}-arm64
appimage-amd64
:
...
...
@@ -279,12 +281,13 @@ appimage-amd64:
-
mkdir -p AppDir/usr/lib/x86_64-linux-gnu AppDir/lib/x86_64-linux-gnu
-
appimage-builder --skip-test
after_script
:
-
mkdir -p artifacts && cp nheko-latest-x86_64.AppImage artifacts/
-
bash ./.ci/upload-nightly-gitlab.sh nheko-latest-x86_64.AppImage
rules
:
-
if
:
'
$CI_PIPELINE_TRIGGERED
==
null'
artifacts
:
paths
:
-
'
nheko-latest-x86_64.AppImage'
-
'
artifacts/
nheko-latest-x86_64.AppImage'
expire_in
:
1 week
expose_as
:
'
appimage-amd64'
cache
:
...
...
@@ -314,6 +317,9 @@ github-release:
tags
:
[
docker
]
rules
:
-
if
:
'
$CI_COMMIT_TAG
=~
/^test\d+\.\d+\.\d+$/'
dependencies
:
-
build
-
sign
before_script
:
-
apk update && apk add jq curl perl
script
:
...
...
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