bump gitpod/workspace-full from 02b1c88
to e3827b6
#1586
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: C++ CI | |
on: | |
push: | |
branches: | |
- main | |
- .* | |
pull_request: | |
branches: | |
- main | |
- .* | |
schedule: | |
- cron: "0 14 * * *" | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: build | |
run: | | |
clang++ -std=c++2a --verbose -Wall -Wextra -pedantic -g \ | |
-integrated-as -lm -lstdc++ -O0 -pthread -save-stats -save-temps \ | |
-v -fcaret-diagnostics -fdiagnostics-fixit-info -fno-builtin \ | |
-fdiagnostics-parseable-fixits -fshow-column -fstandalone-debug \ | |
-fdiagnostics-print-source-range-info -fdiagnostics-show-option \ | |
-fshow-source-location -ftime-report \ | |
./*.cpp -o HQ9+ | |
... |