Skip to content

Commit ce37ab0

Browse files
committed
Upgrade base image and implement github workflows
1 parent 3dfdafc commit ce37ab0

File tree

7 files changed

+28
-39
lines changed

7 files changed

+28
-39
lines changed

.circleci/config.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
21
Edit this file for a quick way to force a CI run
3-
153
2+
2

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Main
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
env:
9+
PACKAGES_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10+
PACKAGES_USERNAME: ${{ github.actor }}
11+
REPO_NAME: ${{ github.event.repository.name }}
12+
13+
jobs:
14+
15+
build-publish-trigger:
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v4
21+
22+
- name: Build image, test it, push it dockerhub, notify dependents
23+
run: ./pipe_build_up_test.sh

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2020, [CyberDojo Foundation](http://blog.cyber-dojo.org/2015/08/cyber-dojo-foundation.html)
1+
Copyright (c) 2025, [CyberDojo Foundation](http://blog.cyber-dojo.org/2015/08/cyber-dojo-foundation.html)
22
All rights reserved.
33

44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![CircleCI](https://circleci.com/gh/cyber-dojo-languages/clangplusplus-cgreen.svg?style=svg)](https://circleci.com/gh/cyber-dojo-languages/clangplusplus-cgreen)
1+
[![Github Action (master)] (https://github.com/cyber-dojo-languages/clangplusplus-cgreen/actions/workflows/main.yml/badge.svg)](https://github.com/cyber-dojo-languages/clangplusplus-cgreen/actions)
22

33
## display_name="C++ (clang++), Cgreen"
44
## image_name="cyberdojofoundation/clangpp_cgreen"

docker/Dockerfile.base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM cyberdojofoundation/clangplusplus:ee058a5
1+
FROM ghcr.io/cyber-dojo-languages/clangplusplus:2dd7605
22
LABEL maintainer=jon@jaggersoft.com
33

44
COPY install.sh .

docker/image_name.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"image_name": "cyberdojofoundation/clangpp_cgreen"
2+
"image_name": "ghcr.io/cyber-dojo-languages/clangpp_cgreen"
33
}

0 commit comments

Comments
 (0)