Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
source-root: ${{ inputs.source-root }}

- name: Build package products
run: swift build --build-tests
run: swift build --disable-experimental-prebuilts --build-tests

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:

- name: Build package products and documentation
run: |
swift build -Xswiftc -emit-symbol-graph -Xswiftc -emit-extension-block-symbols -Xswiftc -emit-symbol-graph-dir -Xswiftc .build
swift build --disable-experimental-prebuilts -Xswiftc -emit-symbol-graph -Xswiftc -emit-extension-block-symbols -Xswiftc -emit-symbol-graph-dir -Xswiftc .build
npm run build-doc
npm run serve-doc
npm run archive
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Build package documentation
if: steps.precondition.outputs.proceed == 'true' && steps.check_version_bump.outputs.release_type == ''
run: |
swift build -Xswiftc -emit-symbol-graph -Xswiftc -emit-symbol-graph-dir -Xswiftc .build
swift build --disable-experimental-prebuilts -Xswiftc -emit-symbol-graph -Xswiftc -emit-symbol-graph-dir -Xswiftc .build
npm run serve-doc

- name: Update GitHub Pages
Expand Down
2 changes: 1 addition & 1 deletion bin/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { execSync } from 'child_process';
import core from '@actions/core';

const args = process.argv.slice(2).join(' ');
const command = `swift build ${args} --verbose \
const command = `swift build ${args} --disable-experimental-prebuilts --verbose \
-Xswiftc \
-emit-symbol-graph \
-Xswiftc \
Expand Down
2 changes: 1 addition & 1 deletion bin/generate.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const pkg = JSON.parse(fs.readFileSync('package.json', 'utf8'));
if (argv['generate-linuxmain'] == true) {
core.startGroup(`Generating LinuxMain for swift package`);
execSync(
`swift test --verbose --generate-linuxmain`, {
`swift test --disable-experimental-prebuilts --verbose --generate-linuxmain`, {
stdio: ['inherit', 'inherit', 'inherit'],
encoding: 'utf-8'
}
Expand Down
2 changes: 1 addition & 1 deletion bin/test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { execSync } from 'child_process';
import core from '@actions/core';

const args = process.argv.slice(2).join(' ');
const command = `swift test ${args} --verbose \
const command = `swift test ${args} --disable-experimental-prebuilts --verbose \
--enable-code-coverage \
--enable-test-discovery`;

Expand Down
7 changes: 4 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.