File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,11 @@ jobs:
2323 - { rust: stable, os: windows-latest }
2424
2525 steps :
26- - name : Make the USER own the working directory. Installing `gssapi` headers
26+ - name : Make the USER own the working directory. Installing required build dependencies
2727 if : ${{ matrix.os == 'ubuntu-latest' }}
2828 run : |
2929 sudo chown -R $USER:$USER ${{ github.workspace }}
30- sudo apt -y install gcc libgssapi-krb5-2 libkrb5-dev libsasl2-modules-gssapi-mit
30+ sudo apt -y install gcc libgssapi-krb5-2 libkrb5-dev libsasl2-modules-gssapi-mit docker-compose
3131
3232 - uses : actions/checkout@v3
3333
Original file line number Diff line number Diff line change @@ -442,7 +442,6 @@ pub fn implement_row_mapper_for_type(input: proc_macro::TokenStream) -> proc_mac
442442 }
443443 } ) ;
444444
445-
446445 // TODO: refactor the code below after the current bugfixes, to conditinally generate
447446 // the required methods and populate the CanyonMapper trait dependencing on the cfg flags
448447 // enabled with a more elegant solution (a fn for feature, for ex)
@@ -457,7 +456,6 @@ pub fn implement_row_mapper_for_type(input: proc_macro::TokenStream) -> proc_mac
457456 }
458457 } ) ;
459458
460-
461459 #[ cfg( feature = "mssql" ) ]
462460 let init_field_values_sqlserver = fields. iter ( ) . map ( |( _vis, ident, ty) | {
463461 let ident_name = ident. to_string ( ) ;
You can’t perform that action at this time.
0 commit comments