Skip to content

Commit

Permalink
chore: rustfmt and 'docker-compose' on the CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRustifyer committed Dec 19, 2024
1 parent 6b8681a commit 75f7ffa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
- { rust: stable, os: windows-latest }

steps:
- name: Make the USER own the working directory. Installing `gssapi` headers
- name: Make the USER own the working directory. Installing required build dependencies
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
sudo chown -R $USER:$USER ${{ github.workspace }}
sudo apt -y install gcc libgssapi-krb5-2 libkrb5-dev libsasl2-modules-gssapi-mit
sudo apt -y install gcc libgssapi-krb5-2 libkrb5-dev libsasl2-modules-gssapi-mit docker-compose
- uses: actions/checkout@v3

Expand Down
2 changes: 0 additions & 2 deletions canyon_macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,6 @@ pub fn implement_row_mapper_for_type(input: proc_macro::TokenStream) -> proc_mac
}
});


// TODO: refactor the code below after the current bugfixes, to conditinally generate
// the required methods and populate the CanyonMapper trait dependencing on the cfg flags
// enabled with a more elegant solution (a fn for feature, for ex)
Expand All @@ -457,7 +456,6 @@ pub fn implement_row_mapper_for_type(input: proc_macro::TokenStream) -> proc_mac
}
});


#[cfg(feature = "mssql")]
let init_field_values_sqlserver = fields.iter().map(|(_vis, ident, ty)| {
let ident_name = ident.to_string();
Expand Down

0 comments on commit 75f7ffa

Please sign in to comment.