Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
Switch to CircleCI 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
narc0tiq committed May 14, 2018
1 parent 3ffef23 commit 1f1ad8d
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 19 deletions.
54 changes: 54 additions & 0 deletions .circleci/config.yml
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/
19 changes: 0 additions & 19 deletions circle.yml

This file was deleted.

0 comments on commit 1f1ad8d

Please sign in to comment.