Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
wardru committed Dec 9, 2023
1 parent b41dcd2 commit 618116b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CI Workflow

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/panduza/pzacx-build-img:latest

steps:
- uses: actions/checkout@v2

# Additional steps such as setting up dependencies, running tests, etc.
- name: Run a command
run: echo "This command runs in the container"
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build*
build/*
examples/build*
examples/CMakeUserPresets.json
CMakeUserPresets.json
Expand All @@ -7,4 +7,3 @@ ConanPresets.json
Testing
conan_imports_manifest.txt
*.swp
*.swo
2 changes: 1 addition & 1 deletion scripts/docker_registry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ fi
docker login ghcr.io -u $USERNAME -p $PASSWORD || exit 1
docker build -t $IMAGE_NAME $PROJECT_ROOT_DIR/docker || exit 1
docker tag $IMAGE_NAME:latest ghcr.io/panduza/$IMAGE_NAME:latest || exit 1
docker push ghcr.io/panduza/$IMAGE_NAME:latest
docker push ghcr.io/panduza/$IMAGE_NAME:latest

0 comments on commit 618116b

Please sign in to comment.