Skip to content

Add Dockerfile for self-hosted runner bolierplate #36

Add Dockerfile for self-hosted runner bolierplate

Add Dockerfile for self-hosted runner bolierplate #36

Workflow file for this run

name: "CI Full Run"
on:
pull_request:
branches:
- main
- grok/*/*
push:
branches:
- main
jobs:
ci-storage-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Create dummy file
run: echo "dummy" > dummy.txt
- name: Test store
uses: ./
with:
action: "store"
storage-host: ""
- name: Remove dummy file
run: rm dummy.txt
- name: Test load
uses: ./
with:
action: "load"
storage-host: ""
- name: Check that dummy file was restored
run: |
set -e
ls -la ~/ci-storage/dimikot/ci-storage
[ "$(cat dummy.txt)" = "dummy" ] || { echo "dummy.txt was not restored"; exit 1; }
self-hosted-runner-boot-docker:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build Docker image
run: |
set -e
cd docker
docker-compose build
- name: Start Docker container
run: |
set -e
cd docker
docker-compose up
env:
GH_REPOSITORY: ${{ github.repository }}
GH_TOKEN: ${{ github.token }}
GH_LABELS: ci-storage-test
self-hosted-runner

Check failure on line 57 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 57