Skip to content

Commit

Permalink
Let's do an experimenting workflow for now
Browse files Browse the repository at this point in the history
  • Loading branch information
heerener committed Oct 2, 2024
1 parent 9ede4fc commit 0d275c1
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
File renamed without changes.
58 changes: 58 additions & 0 deletions .github/workflows/test_codebuild.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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:LINUX_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

0 comments on commit 0d275c1

Please sign in to comment.