Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing various typos and spellchecking §1 using Antidote #60

Open
wants to merge 28 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
3357848
add drop_only tests
cmazakas Sep 12, 2024
2861eb4
add drop_only initializer_list tests
cmazakas Sep 13, 2024
b830c1f
add missing pragam once, licensing
cmazakas Sep 16, 2024
8ee58bb
add test framework impl
cmazakas Sep 16, 2024
baeeb24
add drop_only tests for arc/rc
cmazakas Sep 17, 2024
3a36b97
add missing noinline to panic functions
cmazakas Sep 17, 2024
ef05a59
Docs: github actions to render .md markdown files
sdarwin Sep 17, 2024
7f708ae
Modify email address of commitbot in github actions
sdarwin Sep 18, 2024
484dcc0
Fixing typos and making one small improvement
Dalzhim Sep 19, 2024
923d200
Spellchecking §1 with Antidote.
Dalzhim Sep 19, 2024
9c39fc3
std2::box has deleted copy/borrow ctor
seanbaxter Sep 30, 2024
4c599c1
Better wording in interior mutability section
seanbaxter Oct 2, 2024
5a6a18f
Added draft-lifetimes document
seanbaxter Oct 14, 2024
1056736
Added proposal number for lifetimes submission
seanbaxter Oct 14, 2024
64f7a2a
Fixed P3444R0 filenames
seanbaxter Oct 14, 2024
c4e41dc
Updated P3390R0
seanbaxter Oct 14, 2024
7446ab4
Editing changes to P3444
seanbaxter Oct 14, 2024
37381a1
Added exclusive1 example
seanbaxter Oct 14, 2024
442225f
Updated exclusivity example
seanbaxter Oct 14, 2024
5bee7ea
Put the P and D version in sync
seanbaxter Oct 14, 2024
b822b76
Changed borrow wording to reference-of
seanbaxter Oct 14, 2024
0f4ee01
Added abstract
seanbaxter Oct 14, 2024
0c4083c
Fixed hyphenation mistake
seanbaxter Oct 14, 2024
7869714
Fixed typo
seanbaxter Oct 14, 2024
5e33984
Added compile-fail/array1.cxx
seanbaxter Oct 31, 2024
be5fe7c
Added November note
seanbaxter Nov 7, 2024
62f39a4
Merge branch 'cppalliance:master' into typos
Dalzhim Nov 8, 2024
5992b22
Undoing erroneous changes.
Dalzhim Nov 8, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
---
name: Convert markdown docs to html

on:
push:
branches: ["master", "develop"]
paths:
- proposal/**
- .github/workflows/build-docs.yml

workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false

jobs:
deploy:
runs-on: ubuntu-latest
container:
image: cppalliance/wg21:latest
options: --user 1001

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build docs
run: |
set -xe
# list_of_files="draft P3390R0"
list_of_files="draft"
cd proposal
git clone https://github.com/mpark/wg21.git
echo "include wg21/Makefile" > Makefile
for file in $list_of_files; do
make ${file}.html
done
cp generated/* ../docs/
cd ..
git config --global user.name 'commitbot'
git config --global user.email '[email protected]'
git add docs/* || true
git commit -m "Docs: update from proposal/ md files" || true
git push

- name: Trigger Publish Workflow
uses: actions/github-script@v7
with:
script: |
github.rest.repos.createDispatchEvent({
owner: context.repo.owner,
repo: context.repo.repo,
event_type: 'publish-trigger',
});
3 changes: 3 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

repository_dispatch:
types: [publish-trigger]

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
Expand Down
Loading