Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Kart-Public
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
X.organic
Kart-Public
Commits
b29193aa
Commit
b29193aa
authored
7 years ago
by
Alam Ed Arias
Browse files
Options
Downloads
Patches
Plain Diff
CircleCI: first try
parent
538eac7a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.circleci/config.yml
+53
-0
53 additions, 0 deletions
.circleci/config.yml
with
53 additions
and
0 deletions
.circleci/config.yml
0 → 100644
+
53
−
0
View file @
b29193aa
version
:
2
jobs
:
build
:
working_directory
:
/root/SRB2
docker
:
-
image
:
debian:jessie
environment
:
CC
:
ccache gcc -m32
PKG_CONFIG_LIBDIR
:
/usr/lib/i386-linux-gnu/pkgconfig
LIBGME_CFLAGS
:
-I/usr/include/
LIBGME_LDFLAGS
:
-lgme
CCACHE_COMPRESS
:
true
steps
:
-
run
:
name
:
Add i386 arch
command
:
dpkg --add-architecture i386
#- restore_cache:
# keys:
# - v1-SRB2-APT
-
run
:
name
:
Update APT listing
command
:
apt-get -qq update
-
run
:
name
:
Install SDK
command
:
apt-get -qq -y install git build-essential nasm libpng12-dev:i386 libsdl2-mixer-dev:i386 libgme-dev:i386 gettext ccache wget gcc-multilib ca-certificates
#- save_cache:
# key: v1-SRB2-APT
# paths:
# - /var/cache/apt/
-
checkout
#- restore_cache:
# keys:
# - v1-SRB2-{{ .Branch }}
-
run
:
name
:
Setup cache
command
:
mkdir -p /root/srb2_cache
#- run:
# name: Download SRB2 Resources
# command: wget --verbose --server-response -c http://rosenthalcastle.org/srb2/SRB2-v2115-assets-2.7z -O /root/srb2_cache/SRB2-v2115-assets-2.7z
-
run
:
name
:
Compile
command
:
make -C src LINUX=1 GCC49=1 WARNINGMODE=1 -k
-
store_artifacts
:
path
:
/root/SRB2/bin/Linux/Release/
destination
:
bin
#- save_cache:
# key: v1-SRB2-{{ .Branch }}
# paths:
# - /root/.ccache
# - /root/srb2_cache
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