-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating documentation and documentation system to hyde 2.0 (#534)
* Fix formatting. * Requiring noexcept for executor tasks. * Fixing typeos for CI. * Fixing typos and mistakes for CI. * Updating GCC and fixing future for CI. * Removing noexcept() from function signatures for GCC prior to 13.2 * Reverting accidental save. * Fixing task for MSVC (can't deduce noexcept). * Fixing range based for loop issue with GCC. * Formatting forest.hpp * Revert "Fixing task for MSVC (can't deduce noexcept)." This reverts commit 3e113b2. * Another approach to deduce noexcept. * Removing noexcept mangling for GCC. * Improving nothrow invocable test. * Fixing implementation to handle non-invocable types. * Reverting GCC version Hit a weird issue with version 12 in forest. * Giving up on C++14 support. * Update _config.yml * Hyde updated docs * Getting Hyde 2.0 going. * Eliminate unnessary executor calls for reduction Eliminate unnecessary executor calls for reduction. Added test or correct executor call count on reduction. Fixed formatting in `future_test.hpp`. * Pushing progress to continue working from another device Updating docs to use Hyde 2.0 * Cleaning with hyde 2.0 - preping for release. * Trying to update all tools. * Fixing deprecated usage of aligned_storage, and fully (?) updating Windows build. * another attempt to build. * Trying to find the vcvarsall.bat file!
- Loading branch information
1 parent
12fc5a5
commit c1e9617
Showing
529 changed files
with
9,958 additions
and
9,473 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
# Sample workflow for building and deploying a Jekyll site to GitHub Pages | ||
name: Deploy Jekyll site to Pages | ||
|
||
on: | ||
# Runs on pushes targeting the default branch | ||
push: | ||
branches: [$default-branch] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | ||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
# Build job | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Ruby | ||
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0 | ||
with: | ||
# ruby-version: '3.1' # Not needed with a .ruby-version file | ||
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | ||
cache-version: 0 # Increment this number if you need to re-download cached gems | ||
- name: Setup Pages | ||
id: pages | ||
uses: actions/configure-pages@v4 | ||
- name: Build with Jekyll | ||
# Outputs to the './_site' directory by default | ||
# run: cd ./docs | ||
run: cd ./docs && bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" | ||
env: | ||
JEKYLL_ENV: production | ||
- name: Upload artifact | ||
# Automatically uploads an artifact from the './_site' directory by default | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: ./docs/_site | ||
|
||
# Deployment job | ||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.7.4 | ||
3.2.2 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
source 'https://rubygems.org' | ||
gem 'github-pages', group: :jekyll_plugins | ||
gem 'jekyll' | ||
gem 'jekyll-redirect-from', group: [:jekyll_plugins] | ||
gem 'jekyll-compose', group: [:jekyll_plugins] | ||
gem "jekyll-remote-theme", group: [:jekyll_plugins] | ||
# don't submit this line to the upstream repo | ||
## Enable this line for local theme development | ||
# gem 'jekyll-theme-adobe-hyde', path: '../../themes' |
Oops, something went wrong.