Skip to content

Commit

Permalink
Now actually try to call the composite action
Browse files Browse the repository at this point in the history
  • Loading branch information
heerener committed Oct 3, 2024
1 parent e2c8012 commit b08e9ac
Showing 1 changed file with 44 additions and 42 deletions.
86 changes: 44 additions & 42 deletions .github/workflows/test_codebuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,45 +14,47 @@ jobs:
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
- name: use-composite-action
uses: ./.github/actions/test_composite_action.yaml
# 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

0 comments on commit b08e9ac

Please sign in to comment.