Skip to content

Commit

Permalink
GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Bastacyclop committed Feb 17, 2024
1 parent 37e306e commit a07b91f
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 34 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
- uses: actions/checkout@v3
- name: Install cmake
run: sudo apt-get install cmake
- name: Checkout submodules
run: |
git submodule init
git submodule update
- name: Build
run: cargo build --all-features --verbose
- name: Run tests
Expand Down
46 changes: 46 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Publish Documentation

on:
push:
branches: [ "master" ]

env:
CARGO_TERM_COLOR: always

# 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:
docs:
needs: build

runs-on: ubuntu-latest

# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
contents: read
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

steps:
- uses: actions/checkout@v3
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
- name: Build Docs
run: cargo doc --no-deps --all-features --verbose
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './target/doc'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/user_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub trait RawUserData: Sized {
#[doc(hidden)]
pub trait RawUserDataMut: RawUserData {
unsafe fn internal_user_data_mut<T: ?Sized, U>(self) -> *mut InternalUserData<T, U>;
unsafe fn set_internal_user_data<T: ?Sized, U>(self, *mut InternalUserData<T, U>);
unsafe fn set_internal_user_data<T: ?Sized, U>(self, _: *mut InternalUserData<T, U>);
}

macro_rules! impl_raw_user_data {
Expand Down

0 comments on commit a07b91f

Please sign in to comment.