diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c8b71a89..98dfca6d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,16 +33,17 @@ jobs: fail-fast: false matrix: node-version: [18.x] - platform: [windows-latest, ubuntu-latest, macos-latest] + #, macos-latest + platform: [windows-latest, ubuntu-latest] include: - os: ubuntu-latest rust_target: x86_64-unknown-linux-gnu - os: windows-latest rust_target: x86_64-pc-windows-msvc - - os: macos-latest - rust_target: x86_64-apple-darwin - - os: macos-latest - rust_target: aarch64-apple-darwin + #- os: macos-latest + # rust_target: x86_64-apple-darwin + #- os: macos-latest + # rust_target: aarch64-apple-darwin runs-on: ${{ matrix.platform }} steps: - name: Checkout repository @@ -86,11 +87,11 @@ jobs: env: GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }} ENABLE_CODE_SIGNING: ${{ env.APPLE_CERTIFICATE }} - APPLE_CERTIFICATE: ${{ env.APPLE_CERTIFICATE }} - APPLE_CERTIFICATE_PASSWORD: ${{ env.APPLE_CERTIFICATE_PASSWORD }} - APPLE_SIGNING_IDENTITY: ${{ env.APPLE_SIGNING_IDENTITY }} - APPLE_ID: ${{ env.APPLE_ID }} - APPLE_PASSWORD: ${{ env.APPLE_PASSWORD }} + #APPLE_CERTIFICATE: ${{ env.APPLE_CERTIFICATE }} + #APPLE_CERTIFICATE_PASSWORD: ${{ env.APPLE_CERTIFICATE_PASSWORD }} + #APPLE_SIGNING_IDENTITY: ${{ env.APPLE_SIGNING_IDENTITY }} + #APPLE_ID: ${{ env.APPLE_ID }} + #APPLE_PASSWORD: ${{ env.APPLE_PASSWORD }} with: target: ${{ matrix.platform.rust_target }} diff --git a/Gruntfile.js b/Gruntfile.js index 7892d463..2713d14b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -85,7 +85,7 @@ module.exports = function(grunt) { grunt.registerTask('mark-revision', function() { const done = this.async(); - exec('mkdir -p dist && git rev-parse HEAD > dist/.rev', function (err, stdout, stderr) { + exec('git rev-parse HEAD > dist/.rev', function (err, stdout, stderr) { done(err); }); });