This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
54 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# This configuration was automatically generated from a CircleCI 1.0 config. | ||
version: 2 | ||
jobs: | ||
build: | ||
working_directory: ~/narc0tiq/EvoGUI | ||
parallelism: 1 | ||
shell: /bin/bash --login | ||
|
||
environment: | ||
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts | ||
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results | ||
|
||
docker: | ||
- image: circleci/build-image:ubuntu-14.04-XXL-upstart-1189-5614f37 | ||
command: /sbin/init | ||
|
||
steps: | ||
- checkout | ||
# Prepare for artifact and test results collection equivalent to how it was done on 1.0. | ||
# In many cases you can simplify this from what is generated here. | ||
# 'See docs on artifact collection here https://circleci.com/docs/2.0/artifacts/' | ||
- run: mkdir -p $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS | ||
|
||
# - restore_cache: | ||
# keys: | ||
# # This branch if available | ||
# - v1-dep-{{ .Branch }}- | ||
# # Default branch if not | ||
# - v1-dep-master- | ||
# # Any branch if there are none on the default branch - this should be unnecessary if you have your default branch configured correctly | ||
# - v1-dep- | ||
|
||
- run: sudo apt-get update; sudo apt-get install lua5.2 | ||
- run: rm Makefile | ||
- run: wget https://github.com/narc0tiq/factorio-mod-makefile/raw/master/Makefile | ||
|
||
# - save_cache: | ||
# key: v1-dep-{{ .Branch }}-{{ epoch }} | ||
# paths: | ||
# # This is a broad list of cache paths to include many possible development environments | ||
# # You can probably delete some of these entries | ||
# - vendor/bundle | ||
# - ~/virtualenvs | ||
# - ~/.m2 | ||
# - ~/.ivy2 | ||
# - ~/.bundle | ||
# - ~/.go_workspace | ||
# - ~/.gradle | ||
# - ~/.cache/bower | ||
|
||
- run: make package clean | ||
|
||
- store_artifacts: | ||
path: pkg/ |
This file was deleted.
Oops, something went wrong.