19 lines
No EOL
491 B
YAML
19 lines
No EOL
491 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
|
|
test:
|
|
runs-on: docker
|
|
steps:
|
|
- name: --cpu-period=100000 --cpu-quota=150000 in container.options
|
|
run: apt-get update && apt-get install stress && stress --cpu 6 --timeout 10
|
|
|
|
test2:
|
|
runs-on: docker
|
|
container:
|
|
image: debian:latest
|
|
steps:
|
|
- name: --cpu-period=100000 --cpu-quota=150000 in container.options too
|
|
run: apt-get update && apt-get install stress && stress --cpu 6 --timeout 10 |