-
Notifications
You must be signed in to change notification settings - Fork 1
58 lines (58 loc) · 1.45 KB
/
test_codebuild.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
name: CodeBuild experiments
on: [push]
jobs:
run-on-default-container:
runs-on:
- codebuild-spacktainers-${{ github.run_id }}-${{ github.run_attempt }}
steps:
- name: clone repo
uses: actions/checkout@v4
- name: info
run: |-
echo "Info step"
ls
uname -a
ls /opt
run-on-aws-container:
runs-on:
- codebuild-spacktainers-${{ github.run_id }}-${{ github.run_attempt }}
- image:ubuntu-7.0
- instance-size:small
steps:
- name: clone repo
uses: actions/checkout@v4
- name: info
run: |-
echo "Info step"
ls
uname -a
ls /opt
runs-on-quay-container:
runs-on:
- codebuild-spacktainers-${{ github.run_id }}-${{ github.run_attempt }}
- image:quay.io/buildah/stable:latest
- instance-size:small
steps:
- name: clone repo
uses: actions/checkout@v4
- name: info
run: |-
echo "Info step"
ls
uname -a
ls /opt
runs-on-ecr-container:
runs-on:
- codebuild-spacktainers-${{ github.run_id }}-${{ github.run_attempt }}
- image:130659266700.dkr.ecr.us-east-1.amazonaws.com/spacktainers/builder:latest
- instance-size:small
steps:
- name: clone repo
uses: actions/checkout@v4
- name: info
run: |-
echo "Info step"
ls
uname -a
ls /opt