Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SRB2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
SteelT
SRB2
Commits
f613bd12
Commit
f613bd12
authored
1 year ago
by
Alam Ed Arias
Browse files
Options
Downloads
Patches
Plain Diff
Update config.yml
parent
1d88da8f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.circleci/config.yml
+7
-9
7 additions, 9 deletions
.circleci/config.yml
with
7 additions
and
9 deletions
.circleci/config.yml
+
7
−
9
View file @
f613bd12
...
@@ -3,7 +3,7 @@ jobs:
...
@@ -3,7 +3,7 @@ jobs:
build
:
build
:
working_directory
:
/home/circleci/SRB2
working_directory
:
/home/circleci/SRB2
docker
:
docker
:
-
image
:
cimg/base:
current
-
image
:
cimg/base:
edge
environment
:
environment
:
CC
:
ccache gcc -m32
CC
:
ccache gcc -m32
PKG_CONFIG_LIBDIR
:
/usr/lib/i386-linux-gnu/pkgconfig
PKG_CONFIG_LIBDIR
:
/usr/lib/i386-linux-gnu/pkgconfig
...
@@ -30,9 +30,7 @@ jobs:
...
@@ -30,9 +30,7 @@ jobs:
name
:
Add STJr PPA
name
:
Add STJr PPA
command
:
|
command
:
|
sudo apt-get -qq update
sudo apt-get -qq update
sudo apt-get -qq -y install dirmngr
sudo apt-get -qq install apt-utils
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0B1702D71499D9C25F986507F240F4449D3B0EC6
echo "deb http://ppa.launchpad.net/stjr/srb2/ubuntu trusty main" | sudo tee -a /etc/apt/sources.list
-
run
:
-
run
:
name
:
Make APT cache folder
name
:
Make APT cache folder
command
:
mkdir -p /home/circleci/.cache/apt/archives/partial
command
:
mkdir -p /home/circleci/.cache/apt/archives/partial
...
@@ -53,7 +51,7 @@ jobs:
...
@@ -53,7 +51,7 @@ jobs:
command
:
sudo apt-get -o Dir::Cache="/home/circleci/.cache/apt" -qq -y --no-install-recommends remove libcurl4-openssl-dev:amd64
command
:
sudo apt-get -o Dir::Cache="/home/circleci/.cache/apt" -qq -y --no-install-recommends remove libcurl4-openssl-dev:amd64
-
run
:
-
run
:
name
:
Install i386 SDK
name
:
Install i386 SDK
command
:
sudo apt-get -o Dir::Cache="/home/circleci/.cache/apt" -qq -y --no-install-recommends install git build-essential libpng-dev:i386 libsdl2-mixer-dev:i386 libgme-dev:i386 libcurl4-openssl-dev:i386 libopenmpt-dev:i386 gettext ccache wget gcc-multilib upx openssh-client
command
:
sudo apt-get -o Dir::Cache="/home/circleci/.cache/apt" -qq -y --no-install-recommends install git build-essential libpng-dev:i386 libsdl2-mixer-dev:i386 libgme-dev:i386 libcurl4-openssl-dev:i386 libopenmpt-dev:i386
libminiupnpc-dev:i386
gettext ccache wget gcc-multilib upx openssh-client
-
run
:
-
run
:
name
:
make md5sum
name
:
make md5sum
command
:
sudo find /home/circleci/.cache/apt/archives -type f -print0 | sort -z | sudo xargs -r0 md5sum > /home/circleci/.cache/apt_archives.md5
command
:
sudo find /home/circleci/.cache/apt/archives -type f -print0 | sort -z | sudo xargs -r0 md5sum > /home/circleci/.cache/apt_archives.md5
...
@@ -64,13 +62,13 @@ jobs:
...
@@ -64,13 +62,13 @@ jobs:
-
checkout
-
checkout
-
run
:
-
run
:
name
:
Compile without network support
name
:
Compile without network support
command
:
make -C src LINUX=1 ERRORMODE=1 -k NONET=1
NOUPNP=1
-j4
command
:
make -C src LINUX=1 ERRORMODE=1 -k NONET=1 -j4
-
run
:
-
run
:
name
:
wipe build
name
:
wipe build
command
:
make -C src LINUX=1
NOUPNP=1
cleandep
command
:
make -C src LINUX=1 cleandep
-
run
:
-
run
:
name
:
rebuild depend
name
:
rebuild depend
command
:
make -C src LINUX=1
NOUPNP=1
clean
command
:
make -C src LINUX=1 clean
-
run
:
-
run
:
name
:
make master depend file
name
:
make master depend file
command
:
find make/linux/SDL/deps/ -type f -print0 | sort -z | xargs -r0 cat > make/linux/SDL.deps
command
:
find make/linux/SDL/deps/ -type f -print0 | sort -z | xargs -r0 cat > make/linux/SDL.deps
...
@@ -79,7 +77,7 @@ jobs:
...
@@ -79,7 +77,7 @@ jobs:
-
v1-SRB2-{{ .Branch }}-{{ checksum "make/linux/SDL.deps" }}
-
v1-SRB2-{{ .Branch }}-{{ checksum "make/linux/SDL.deps" }}
-
run
:
-
run
:
name
:
Compile
name
:
Compile
command
:
make -C src LINUX=1 ERRORMODE=1
NOUPNP=1
-k -j4
command
:
make -C src LINUX=1 ERRORMODE=1 -k -j4
-
store_artifacts
:
-
store_artifacts
:
path
:
/home/circleci/SRB2/bin/
path
:
/home/circleci/SRB2/bin/
destination
:
bin
destination
:
bin
...
...
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