Skip to content

Commit

Permalink
📝 update English readme and switch to circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
hungry-foolish committed May 4, 2024
1 parent 8cd8762 commit 8a6134c
Show file tree
Hide file tree
Showing 4 changed files with 184 additions and 148 deletions.
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

43 changes: 43 additions & 0 deletions Project/GCCMF-X86-LINUX/circleci.config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Couldn't automatically generate a config from your source code.
# This is a generic template to serve as a base for your custom config
# See: https://circleci.com/docs/configuration-reference
version: 2.1
jobs:
test:
docker:
- image: cimg/base:stable
steps:
- checkout
# Replace this with a real test runner invocation
- run:
name: Run tests
command: sudo dpkg --add-architecture i386 && sudo apt-get update && sudo apt-get -qq -y install gcc-multilib libc6:i386 libgcc1:i386 && cd Project/GCCMF-X86-LINUX && make
build:
docker:
- image: cimg/base:stable
steps:
- checkout
# Replace this with steps to build a package, or executable
- run:
name: Build an artifact
command: touch example.txt
- store_artifacts:
path: example.txt
deploy:
docker:
- image: cimg/base:stable
steps:
# Replace this with steps to deploy to users
- run:
name: deploy
command: '#e.g. ./deploy.sh'
workflows:
example:
jobs:
- test
- build:
requires:
- test
- deploy:
requires:
- test
Loading

0 comments on commit 8a6134c

Please sign in to comment.