Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
matrix-media-repo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
matrix-media-repo
Commits
5a97eee8
Commit
5a97eee8
authored
4 years ago
by
Travis Ralston
Browse files
Options
Downloads
Patches
Plain Diff
Switch all CI over to Buildkite
parent
c6df3395
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.circleci/config.yml
+0
-50
0 additions, 50 deletions
.circleci/config.yml
appveyor.yml
+0
-36
0 additions, 36 deletions
appveyor.yml
build.ps1
+0
-5
0 additions, 5 deletions
build.ps1
ci-complement.sh
+2
-0
2 additions, 0 deletions
ci-complement.sh
with
2 additions
and
91 deletions
.circleci/config.yml
deleted
100644 → 0
+
0
−
50
View file @
c6df3395
version
:
2
jobs
:
complement
:
docker
:
-
image
:
circleci/golang:1.14
environment
:
GO111MODULE
:
"
on"
COMPLEMENT_BASE_IMAGE
:
complement-media-repo
COMPLEMENT_VERSION_CHECK_ITERATIONS
:
400
steps
:
-
setup_remote_docker
-
checkout
-
run
:
name
:
build complement image
command
:
'
docker
build
-t
complement-media-repo
-f
Complement.Dockerfile
.'
-
run
:
name
:
fix script
command
:
'
chmod
+x
ci-complement.sh'
-
run
:
name
:
run complement
command
:
'
./ci-complement.sh'
build
:
docker
:
-
image
:
circleci/golang:1.14
environment
:
GO111MODULE
:
"
on"
working_directory
:
/go/src/github.com/turt2live/matrix-media-repo
steps
:
-
checkout
-
run
:
name
:
build binaries
command
:
'
./build.sh'
-
store_artifacts
:
path
:
bin/media_repo
destination
:
media_repo
-
store_artifacts
:
path
:
bin/import_synapse
destination
:
import_synapse
-
store_artifacts
:
path
:
bin/gdpr_export
destination
:
gdpr_export
-
store_artifacts
:
path
:
bin/gdpr_import
destination
:
gdpr_import
workflows
:
version
:
2
build_and_test
:
jobs
:
-
build
-
complement
This diff is collapsed.
Click to expand it.
appveyor.yml
deleted
100644 → 0
+
0
−
36
View file @
c6df3395
version
:
"
{build}"
clone_folder
:
c:\gopath\src\github.com\turt2live\matrix-media-repo
environment
:
GOPATH
:
c:\gopath
GOVERSION
:
1.14
init
:
-
git config --global core.autocrlf input
install
:
# Install the specific Go version.
-
rmdir c:\go /s /q
-
appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-amd64.msi
-
msiexec /i go%GOVERSION%.windows-amd64.msi /q
-
set PATH=c:\go\bin;c:\gopath\bin;%PATH%
-
go version
-
go env
build_script
:
-
set GOBIN=%CD%/bin
-
set GO111MODULE=on
-
ps
:
.\build.ps1
artifacts
:
-
path
:
bin/media_repo.exe
name
:
media_repo.exe
-
path
:
bin/import_synapse.exe
name
:
import_synapse.exe
-
path
:
bin/gdpr_export.exe
name
:
gdpr_export.exe
-
path
:
bin/gdpr_import.exe
name
:
gdpr_import.exe
test_script
:
[]
# https://github.com/turt2live/matrix-media-repo/issues/40
This diff is collapsed.
Click to expand it.
build.ps1
deleted
100644 → 0
+
0
−
5
View file @
c6df3395
$GitCommit
=
(
git
rev-list
-1
HEAD
)
$Version
=
(
git
describe
--tags
)
go
install
-v
.
/cmd/compile_assets
bin\compile_assets.exe
go
install
-ldflags
"-X github.com/turt2live/matrix-media-repo/common/version.GitCommit=
$GitCommit
-X github.com/turt2live/matrix-media-repo/common/version.Version=
$Version
"
-v
.
/cmd/...
This diff is collapsed.
Click to expand it.
ci-complement.sh
+
2
−
0
View file @
5a97eee8
...
@@ -2,4 +2,6 @@
...
@@ -2,4 +2,6 @@
git clone
--depth
=
1 https://github.com/matrix-org/complement.git CI_COMPLEMENT
git clone
--depth
=
1 https://github.com/matrix-org/complement.git CI_COMPLEMENT
cd
CI_COMPLEMENT
cd
CI_COMPLEMENT
git fetch origin pull/14/head:complement-with-timeout
git checkout complement-with-timeout
go
test
-run
'^(TestMediaWithoutFileName)$'
-v
./tests
go
test
-run
'^(TestMediaWithoutFileName)$'
-v
./tests
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