refactor: Clarify comment for conversion timestamp in Converter.cpp #86
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: 'ci' | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout (GitHub) | |
uses: actions/checkout@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and run Dev Container task | |
uses: devcontainers/ci@v0.3 | |
with: | |
# Change this to point to your image name | |
imageName: ghcr.io/optitool/morituri-devcontainer | |
cacheFrom: ghcr.io/optitool/morituri-devcontainer | |
push: always | |
# Change this to be your CI task/script | |
runCmd: | | |
# Add multiple commands to run if needed | |
export CC=gcc-13 | |
export CXX=g++-13 | |
mkdir -p build | |
cd build | |
cmake -G'Ninja' -DVCPKG_INSTALLED_DIR=/vcpkg_installed -DCMAKE_TOOLCHAIN_FILE=/vcpkg/scripts/buildsystems/vcpkg.cmake .. | |
cmake --build . | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: morituri | |
path: build/comm2osm | |