mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
circleci: try it out a bit
This commit is contained in:
34
.circleci/config.yml
Normal file
34
.circleci/config.yml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
version: 2
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
docker:
|
||||||
|
- image: ubuntu:18.04
|
||||||
|
working_directory: ~/repo
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
#- restore_cache:
|
||||||
|
# keys:
|
||||||
|
# - v1-dependencies-{{ checksum "requirements.txt" }}
|
||||||
|
# - v1-dependencies-
|
||||||
|
#- run:
|
||||||
|
# name: install dependencies
|
||||||
|
# command: |
|
||||||
|
# python3 -m venv venv
|
||||||
|
# . venv/bin/activate
|
||||||
|
# pip install -r requirements.txt
|
||||||
|
#- save_cache:
|
||||||
|
# paths:
|
||||||
|
# - ./venv
|
||||||
|
# key: v1-dependencies-{{ checksum "requirements.txt" }}
|
||||||
|
- run: env | sort
|
||||||
|
- run: pwd
|
||||||
|
- run: ls -l
|
||||||
|
- run: whoami
|
||||||
|
- run: uname -a
|
||||||
|
- run: nproc
|
||||||
|
- run: date > my-artifact
|
||||||
|
- run: ./setup -y
|
||||||
|
- run: ./build --arch aarch64 --download-dependencies --nproc 1 gem5
|
||||||
|
- store_artifacts:
|
||||||
|
path: my-artifact
|
||||||
|
destination: my-artifact
|
||||||
Reference in New Issue
Block a user