Skip to content

Commit 0262445

Browse files
committed
just building
1 parent 42ab0ba commit 0262445

File tree

4 files changed

+11
-104
lines changed

4 files changed

+11
-104
lines changed
Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Ubuntu
1+
name: Build
22

33
on: [push, pull_request]
44

@@ -7,14 +7,15 @@ concurrency:
77
cancel-in-progress: true
88

99
jobs:
10-
gcc:
11-
runs-on: ubuntu-latest
10+
build:
1211
strategy:
1312
matrix:
1413
build_type: [Release]
15-
env:
16-
CC: gcc
17-
CXX: g++
14+
os:
15+
- ubuntu-latest
16+
- windows-latest
17+
- macos-latest
18+
runs-on: ${{ matrix.os }}
1819
steps:
1920
- name: Checkout code
2021
uses: actions/checkout@v3
@@ -23,9 +24,4 @@ jobs:
2324
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=${{ matrix.build_type }}
2425

2526
- name: Build
26-
run: cmake --build build --parallel 10
27-
28-
- name: Run tests
29-
run: |
30-
cd build
31-
ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure . --verbose
27+
run: cmake --build build --parallel 10

.github/workflows/mac.yml

Lines changed: 0 additions & 57 deletions
This file was deleted.

.github/workflows/windows.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
# Advent of Code 2023
1+
# Advent of Code
22

33
![](https://img.shields.io/badge/stars%20⭐-35-yellow)
44
![](https://img.shields.io/badge/days%20completed-17-red)
5-
[![Windows](https://github.com/K20shores/aoc/actions/workflows/windows.yml/badge.svg)](https://github.com/K20shores/aoc/actions/workflows/windows.yml)
6-
[![Mac](https://github.com/K20shores/aoc/actions/workflows/mac.yml/badge.svg)](https://github.com/K20shores/aoc/actions/workflows/mac.yml)
7-
[![Ubuntu](https://github.com/K20shores/aoc/actions/workflows/ubuntu.yml/badge.svg)](https://github.com/K20shores/aoc/actions/workflows/ubuntu.yml)
5+
[![Build](https://github.com/K20shores/aoc/actions/workflows/build.yml/badge.svg)](https://github.com/K20shores/aoc/actions/workflows/build.yml)
86

9-
[adventofcode.com](https://adventofcode.com/2023)
7+
[adventofcode.com](https://adventofcode.com)

0 commit comments

Comments
 (0)